fix: make --input-path
optional for import/export commands
otherwise `--list-models` won't work without the input path, and that's just annoying
This commit is contained in:
parent
9fabecf406
commit
435497eca3
|
@ -255,7 +255,7 @@ def file_import_command_template(
|
||||||
exists=True, file_okay=True, dir_okay=True,
|
exists=True, file_okay=True, dir_okay=True,
|
||||||
help="Path to input file(s). Can be a folder "
|
help="Path to input file(s). Can be a folder "
|
||||||
"if app logic can guess the filename(s); "
|
"if app logic can guess the filename(s); "
|
||||||
"otherwise must be complete file path.")] = ...,
|
"otherwise must be complete file path.")] = None,
|
||||||
|
|
||||||
):
|
):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue