Skip to content

Commit c366d6f

Browse files
Postmodum37claude
andcommitted
Fix unused loop variable in rename command
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 52a3d3e commit c366d6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/beacon_dl/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ def rename_files(
896896

897897
# Build reverse mapping from dotted names to original names
898898
dotted_to_original: dict[str, str] = {}
899-
for original, display in COLLECTION_DISPLAY_NAMES.items():
899+
for original, _display in COLLECTION_DISPLAY_NAMES.items():
900900
dotted = original.replace(" ", ".")
901901
dotted_to_original[dotted] = original
902902

0 commit comments

Comments
 (0)