Skip to content

Commit 6ac3fa3

Browse files
committed
Remove --batchmode option
Previously deprecated in 1.2.0. Signed-off-by: John Pennycook <john.pennycook@intel.com>
1 parent 2486942 commit 6ac3fa3

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

bin/codebasin

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,6 @@ def main():
108108
action="store",
109109
help="Dump out annotated platform/parsing tree to <file.json>.",
110110
)
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-
)
118111
parser.add_argument(
119112
"-x",
120113
"--exclude",
@@ -155,11 +148,6 @@ def main():
155148
)
156149

157150
# 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-
)
163151
if args.dump:
164152
warnings.warn(
165153
"--dump will be removed in a future release.",
@@ -291,12 +279,6 @@ def main():
291279
return True
292280
return name in args.reports
293281

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-
300282
# Print summary report
301283
if report_enabled("summary"):
302284
summary = report.summary(setmap)

0 commit comments

Comments
 (0)