Skip to content

Commit 5147b27

Browse files
committed
west: spdx: remove unnecessary format strings
As reported by sonarqube, "String formatting should be used correctly" Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
1 parent 124af38 commit 5147b27

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

scripts/west_commands/spdx.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ def do_add_parser(self, parser_adder):
5151
def do_run(self, args, unknown_args):
5252
self.dbg(f"running zephyr SPDX generator")
5353

54-
self.dbg(f" --init is", args.init)
55-
self.dbg(f" --build-dir is", args.build_dir)
56-
self.dbg(f" --namespace-prefix is", args.namespace_prefix)
57-
self.dbg(f" --spdx-dir is", args.spdx_dir)
58-
self.dbg(f" --analyze-includes is", args.analyze_includes)
59-
self.dbg(f" --include-sdk is", args.include_sdk)
54+
self.dbg(" --init is", args.init)
55+
self.dbg(" --build-dir is", args.build_dir)
56+
self.dbg(" --namespace-prefix is", args.namespace_prefix)
57+
self.dbg(" --spdx-dir is", args.spdx_dir)
58+
self.dbg(" --analyze-includes is", args.analyze_includes)
59+
self.dbg(" --include-sdk is", args.include_sdk)
6060

6161
if args.init:
6262
self.do_run_init(args)

0 commit comments

Comments
 (0)