We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dce8e1c commit d07c7daCopy full SHA for d07c7da
mypy/main.py
@@ -570,7 +570,6 @@ def add_invertible_flag(
570
general_group.add_argument(
571
"-O",
572
"--output",
573
- metavar="FORMAT",
574
help="Set a custom output format",
575
choices=OUTPUT_CHOICES,
576
)
@@ -1108,7 +1107,7 @@ def add_invertible_flag(
1108
1107
parser.add_argument(
1109
"--enable-incomplete-feature",
1110
action="append",
1111
- metavar="{" + ",".join(sorted(INCOMPLETE_FEATURES)) + "}",
+ choices=sorted(INCOMPLETE_FEATURES),
1112
help="Enable support of incomplete/experimental features for early preview",
1113
1114
internals_group.add_argument(
0 commit comments