Rename supported formats#6
Open
lukeschmitt-tr wants to merge 1 commit into
Open
Conversation
Contributor
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
b9dbedd to
6023989
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
This PR renames the supported dataset type identifiers across the Trossen Cloud CLI from mcap/lerobot to trossenmcap/lerobot_v3, updating the DatasetType enum, CLI defaults/examples, validator dispatch, and associated tests to match the new values.
Changes:
- Renamed
DatasetTypeenum values toTROSSENMCAP="trossenmcap"andLEROBOT_V3="lerobot_v3". - Updated validator dispatch and CLI defaults/examples to use the new dataset type names.
- Updated test fixtures and assertions to reflect the renamed dataset type strings.
Reviewed changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
src/trossen_cloud_cli/types.py |
Renames DatasetType enum members/values to the new identifiers. |
src/trossen_cloud_cli/validators/__init__.py |
Updates validator dispatch map and docstring to the new dataset types. |
src/trossen_cloud_cli/commands/datasets.py |
Changes the default dataset type for import-hf to LEROBOT_V3. |
src/trossen_cloud_cli/upload.py |
Updates docstring example for dataset_type to lerobot_v3. |
src/trossen_cloud_cli/cli.py |
Updates CLI usage text example to --type lerobot_v3. |
README.md |
Updates README example command to --type lerobot_v3. |
tests/test_types.py |
Updates enum value tests and DatasetInfo type assertions. |
tests/test_validators.py |
Updates validator dispatch tests and CLI upload tests to use new type strings. |
tests/test_api_endpoints.py |
Updates mocked API dataset type values and payload assertions to trossenmcap. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
15
to
16
|
|
||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

This PR updates dataset type names from
mcap/lerobottotrossenmcap/lerobot_v3across the CLI tool.