From 18933774f2e11fd0cba353962eb0d2515542a63c Mon Sep 17 00:00:00 2001 From: Xevion Date: Thu, 11 May 2023 02:10:40 -0500 Subject: [PATCH] Improve move option prompt string --- phototag/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phototag/cli.py b/phototag/cli.py index 3b6ad46..3d2319c 100644 --- a/phototag/cli.py +++ b/phototag/cli.py @@ -95,9 +95,9 @@ def collect(files: Tuple[str], output=None, all: bool = False, regex: str = None @cli.command('auth') @click.argument("path", type=click.Path(exists=True)) -@click.option("-m", "--move", default=False, show_default=True, prompt=True, +@click.option("-m", "--move", default=False, show_default=True, prompt='Move instead of copy?', help="Move instead of copying the credentials file", ) -def auth(path, move): +def auth(path: str, move: bool): """ A utility command for copying the Downloaded Google Vision API Credentials file to the configuration folder. """