Skip to content

Commit 9510e71

Browse files
committed
fix: rename ambiguous variable 'l' to 'layer' (ruff E741)
1 parent 3b273e7 commit 9510e71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/specify_cli/presets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ def _reconcile_composed_commands(self, command_names: List[str]) -> None:
628628
if not layers:
629629
continue
630630

631-
has_composition = any(l["strategy"] != "replace" for l in layers)
631+
has_composition = any(layer["strategy"] != "replace" for layer in layers)
632632
if not has_composition:
633633
# Pure replace — the top layer wins.
634634
top_layer = layers[0]

0 commit comments

Comments
 (0)