Skip to content

Commit d5220dd

Browse files
committed
project: Fix unused-loop-control-variable (B007)
Derived from flake8-bugbear, see https://docs.astral.sh/ruff/rules/unused-loop-control-variable/ Signed-off-by: Pieter De Gendt <pieter.degendt@basalte.be>
1 parent edd1cee commit d5220dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/west/app/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,7 @@ def append(*strings):
10191019
#
10201020
# This has its own wrinkle: we can't let a failed
10211021
# import break the built-in commands.
1022-
for path, specs in self.west_app.extension_groups.items():
1022+
for _path, specs in self.west_app.extension_groups.items():
10231023
# This may occur in case a project defines commands already
10241024
# defined, in which case it has been filtered out.
10251025
if not specs:

0 commit comments

Comments
 (0)