python: Elide type=str from argparse arguments.

This commit is contained in:
Alex Vandiver
2025-10-17 18:25:09 +00:00
committed by Tim Abbott
parent ca01de84be
commit 1e943ae7df
5 changed files with 1 additions and 11 deletions

View File

@@ -17,12 +17,10 @@ class Command(ZulipBaseCommand):
group = parser.add_mutually_exclusive_group(required=True)
group.add_argument(
"--enable",
type=str,
help="Name of the authentication backend to enable",
)
group.add_argument(
"--disable",
type=str,
help="Name of the authentication backend to disable",
)
group.add_argument(