From 435497eca35921be449e7a9e86b78fc5305500b8 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sun, 8 Dec 2024 15:42:14 -0600 Subject: [PATCH] fix: make `--input-path` optional for import/export commands otherwise `--list-models` won't work without the input path, and that's just annoying --- src/wuttasync/cli/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wuttasync/cli/base.py b/src/wuttasync/cli/base.py index 6368c6a..25771ad 100644 --- a/src/wuttasync/cli/base.py +++ b/src/wuttasync/cli/base.py @@ -255,7 +255,7 @@ def file_import_command_template( exists=True, file_okay=True, dir_okay=True, help="Path to input file(s). Can be a folder " "if app logic can guess the filename(s); " - "otherwise must be complete file path.")] = ..., + "otherwise must be complete file path.")] = None, ): """