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 @@ -108,13 +108,6 @@ def main():
108
108
action = "store" ,
109
109
help = "Dump out annotated platform/parsing tree to <file.json>." ,
110
110
)
111
- deprecated_args .add_argument (
112
- "--batchmode" ,
113
- dest = "batchmode" ,
114
- action = "store_true" ,
115
- default = False ,
116
- help = "Enable additional output for bulk operation." ,
117
- )
118
111
parser .add_argument (
119
112
"-x" ,
120
113
"--exclude" ,
@@ -155,11 +148,6 @@ def main():
155
148
)
156
149
157
150
# Warnings for deprecated functionality with no planned replacement.
158
- if args .batchmode :
159
- warnings .warn (
160
- "--batchmode will be removed in a future release." ,
161
- DeprecationWarning ,
162
- )
163
151
if args .dump :
164
152
warnings .warn (
165
153
"--dump will be removed in a future release." ,
@@ -291,12 +279,6 @@ def main():
291
279
return True
292
280
return name in args .reports
293
281
294
- if args .batchmode and (
295
- report_enabled ("summary" ) or report_enabled ("clustering" )
296
- ):
297
- print (f"Config file: { config_file } " )
298
- print (f"Root: { rootdir } " )
299
-
300
282
# Print summary report
301
283
if report_enabled ("summary" ):
302
284
summary = report .summary (setmap )
You can’t perform that action at this time.
0 commit comments