mirror of
https://github.com/clearml/clearml
synced 2025-03-03 18:52:12 +00:00
Fix missing required argument --files in clearml-data remove
This commit is contained in:
parent
532010c93d
commit
dacf097ebb
@ -117,7 +117,7 @@ def cli():
|
||||
remove = subparsers.add_parser('remove', help='Remove files from the dataset')
|
||||
remove.add_argument('--id', type=str, required=False,
|
||||
help='Previously created dataset id. Default: previously created/accessed dataset')
|
||||
remove.add_argument('--files', type=str, nargs='*',
|
||||
remove.add_argument('--files', type=str, required=True, nargs='*',
|
||||
help='Files / folders to remove (support for wildcard selection). '
|
||||
'Notice: File path is the dataset path not the local path. '
|
||||
'Example: data/*.jpg data/jsons/')
|
||||
|
Loading…
Reference in New Issue
Block a user