File tree Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -99,13 +99,6 @@ def main():
99
99
action = "store" ,
100
100
help = "Dump out annotated platform/parsing tree to <file.json>." ,
101
101
)
102
- deprecated_args .add_argument (
103
- "--batchmode" ,
104
- dest = "batchmode" ,
105
- action = "store_true" ,
106
- default = False ,
107
- help = "Enable additional output for bulk operation." ,
108
- )
109
102
parser .add_argument (
110
103
"-x" ,
111
104
"--exclude" ,
@@ -146,11 +139,6 @@ def main():
146
139
)
147
140
148
141
# Warnings for deprecated functionality with no planned replacement.
149
- if args .batchmode :
150
- warnings .warn (
151
- "--batchmode will be removed in a future release." ,
152
- DeprecationWarning ,
153
- )
154
142
if args .dump :
155
143
warnings .warn (
156
144
"--dump will be removed in a future release." ,
@@ -273,12 +261,6 @@ def main():
273
261
return True
274
262
return name in args .reports
275
263
276
- if args .batchmode and (
277
- report_enabled ("summary" ) or report_enabled ("clustering" )
278
- ):
279
- print (f"Config file: { config_file } " )
280
- print (f"Root: { rootdir } " )
281
-
282
264
# Print summary report
283
265
if report_enabled ("summary" ):
284
266
summary = report .summary (setmap )
You can’t perform that action at this time.
0 commit comments