Fixed task creating CLI parameter (#3519)

* Fixed CLI parameter

* Adjusted docs

* Added CHANGELOG
main
Dmitry Kalinin 5 years ago committed by GitHub
parent a881617124
commit 472d53596e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

@ -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)

@ -113,7 +113,7 @@ task_create_parser.add_argument(
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'

Loading…
Cancel
Save