@@ -1163,22 +1163,22 @@ def add_invertible_flag(
1163
1163
"--skip-c-gen" , dest = "mypyc_skip_c_generation" , action = "store_true" , help = argparse .SUPPRESS
1164
1164
)
1165
1165
1166
- other_group = parser .add_argument_group (title = "Miscellaneous" )
1167
- other_group .add_argument ("--quickstart-file" , help = argparse .SUPPRESS )
1168
- other_group .add_argument ("--junit-xml" , help = "Write junit.xml to the given file" )
1166
+ misc_group = parser .add_argument_group (title = "Miscellaneous" )
1167
+ misc_group .add_argument ("--quickstart-file" , help = argparse .SUPPRESS )
1168
+ misc_group .add_argument ("--junit-xml" , help = "Write junit.xml to the given file" )
1169
1169
imports_group .add_argument (
1170
1170
"--junit-format" ,
1171
1171
choices = ["global" , "per_file" ],
1172
1172
default = "global" ,
1173
1173
help = "If --junit-xml is set, specifies format. global: single test with all errors; per_file: one test entry per file with failures" ,
1174
1174
)
1175
- other_group .add_argument (
1175
+ misc_group .add_argument (
1176
1176
"--find-occurrences" ,
1177
1177
metavar = "CLASS.MEMBER" ,
1178
1178
dest = "special-opts:find_occurrences" ,
1179
1179
help = "Print out all usages of a class member (experimental)" ,
1180
1180
)
1181
- other_group .add_argument (
1181
+ misc_group .add_argument (
1182
1182
"--scripts-are-modules" ,
1183
1183
action = "store_true" ,
1184
1184
help = "Script x becomes module x instead of __main__" ,
@@ -1189,7 +1189,7 @@ def add_invertible_flag(
1189
1189
default = False ,
1190
1190
strict_flag = False ,
1191
1191
help = "Install detected missing library stub packages using pip" ,
1192
- group = other_group ,
1192
+ group = misc_group ,
1193
1193
)
1194
1194
add_invertible_flag (
1195
1195
"--non-interactive" ,
@@ -1199,12 +1199,12 @@ def add_invertible_flag(
1199
1199
"Install stubs without asking for confirmation and hide "
1200
1200
+ "errors, with --install-types"
1201
1201
),
1202
- group = other_group ,
1202
+ group = misc_group ,
1203
1203
inverse = "--interactive" ,
1204
1204
)
1205
1205
1206
1206
if server_options :
1207
- other_group .add_argument (
1207
+ misc_group .add_argument (
1208
1208
"--use-fine-grained-cache" ,
1209
1209
action = "store_true" ,
1210
1210
help = "Use the cache in fine-grained incremental mode" ,
0 commit comments