@@ -103,7 +103,8 @@ def init_parser() -> argparse.ArgumentParser:
103103 help = "Check some files (requires daemon)" )
104104 p .add_argument ("-v" , "--verbose" , action = "store_true" ,
105105 help = "Print detailed status" )
106- p .add_argument ("-q" , "--quiet" , action = "store_true" , help = argparse .SUPPRESS ) # Deprecated
106+ p .add_argument ("-q" , "--quiet" , action = "store_true" ,
107+ help = argparse .SUPPRESS ) # Deprecated
107108 p .add_argument ("--junit-xml" ,
108109 help = "Write junit.xml to the given file" )
109110 p .add_argument ("--perf-stats-file" ,
@@ -134,7 +135,8 @@ def init_parser() -> argparse.ArgumentParser:
134135 help = "Re-check the previous list of files, with optional modifications (requires daemon)" )
135136 p .add_argument ("-v" , "--verbose" , action = "store_true" ,
136137 help = "Print detailed status" )
137- p .add_argument ("-q" , "--quiet" , action = "store_true" , help = argparse .SUPPRESS ) # Deprecated
138+ p .add_argument ("-q" , "--quiet" , action = "store_true" ,
139+ help = argparse .SUPPRESS ) # Deprecated
138140 p .add_argument ("--junit-xml" ,
139141 help = "Write junit.xml to the given file" )
140142 p .add_argument ("--perf-stats-file" ,
@@ -203,7 +205,8 @@ def init_parser() -> argparse.ArgumentParser:
203205 help = "Direct daemon stdout/stderr to FILE" )
204206 p .add_argument ("flags" , metavar = "FLAG" , nargs = "*" , type = str ,
205207 help = "Regular mypy flags (precede with --)" )
206- p .add_argument ("--options-data" , help = argparse .SUPPRESS )
208+ p .add_argument ("--options-data" ,
209+ help = argparse .SUPPRESS ) # Used in server.py
207210
208211 add_subparser ("help" , action = help_action )
209212
0 commit comments