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 8955c5f commit 35b1faaCopy full SHA for 35b1faa
mypy/dmypy/client.py
@@ -57,6 +57,7 @@ def init_parser() -> argparse.ArgumentParser:
57
if sys.version_info >= (3, 14):
58
parser.color = True # Set as init arg in 3.14
59
60
+ # fmt: off
61
parser.set_defaults(action=None)
62
parser.add_argument("--status-file", default=DEFAULT_STATUS_FILE,
63
help="status file to retrieve daemon details")
@@ -209,6 +210,7 @@ def init_parser() -> argparse.ArgumentParser:
209
210
help=argparse.SUPPRESS) # Used in server.py
211
212
add_subparser("help", action=help_action)
213
+ # fmt: on
214
215
return parser
216
0 commit comments