Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed task creating CLI parameter #3519

Merged
merged 3 commits into from
Aug 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- TDB
- Fixed task creating CLI parameter (<https://github.com/openvinotoolkit/cvat/pull/3519>)

### Security

Expand Down
2 changes: 1 addition & 1 deletion site/content/en/docs/manual/advanced/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ comprehensive CVAT administration tool in the future.

Overview of functionality:

- Create a new task (supports name, bug tracker, labels JSON, local/share/remote files)
- Create a new task (supports name, bug tracker, project, labels JSON, local/share/remote files)
- Delete tasks (supports deleting a list of task IDs)
- List all tasks (supports basic CSV or JSON output)
- Download JPEG frames (supports a list of frame IDs)
Expand Down
2 changes: 1 addition & 1 deletion utils/cli/core/definition.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def argparse(s):
help='string or file containing JSON labels specification'
)
task_create_parser.add_argument(
'--project',
'--project_id',
default=None,
type=int,
help='project ID if project exists'
Expand Down