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:
Lance Edgar 2024-12-08 15:42:14 -06:00
parent 9fabecf406
commit 435497eca3

View file

@ -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,
): ):
""" """