From a04719b3c631d9503ba8e1f21e944c4a33118a40 Mon Sep 17 00:00:00 2001 From: Yurij Mikhalevich Date: Wed, 26 Feb 2025 09:13:47 +0400 Subject: [PATCH] fix: subtract arg helper string (#182) --- rclip/utils/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rclip/utils/helpers.py b/rclip/utils/helpers.py index debfd952..17201f7c 100644 --- a/rclip/utils/helpers.py +++ b/rclip/utils/helpers.py @@ -107,7 +107,7 @@ def init_arg_parser() -> argparse.ArgumentParser: help='a text query or a path/URL to an image file to add to the "original" query,' ' can be used multiple times') parser.add_argument('--subtract', '--sub', '-s', '-', metavar='QUERY', action='append', default=[], - help='a text query or a path/URL to an image file to add to the "original" query,' + help='a text query or a path/URL to an image file to subtract from the "original" query,' ' can be used multiple times') parser.add_argument('--top', '-t', type=positive_int_arg_type, default=10, help='number of top results to display; default: 10')