mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
python: Remove redundant dest for argparse arguments.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
4d583e3d41
commit
a5dbab8fb0
@@ -20,11 +20,11 @@ def parse_args() -> argparse.Namespace:
|
||||
nargs="?", metavar="<days>", help="Deployments older than "
|
||||
"threshold days will be deleted. (defaults to 14)")
|
||||
parser.add_argument(
|
||||
"--dry-run", dest="dry_run", action="store_true",
|
||||
"--dry-run", action="store_true",
|
||||
help="If specified then script will only print the deployments and "
|
||||
"caches that it will delete/keep back. It will not delete anything.")
|
||||
parser.add_argument(
|
||||
"--verbose", dest="verbose", action="store_true",
|
||||
"--verbose", action="store_true",
|
||||
help="If specified then script will print a detailed report "
|
||||
"of what is going on.")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user