Skip to content

Commit 688283b

Browse files
committed
fix: remove unused loop variable in tag processing
1 parent 25f9c07 commit 688283b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nix/ext/scripts/update_versions_json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def get_tags(url: str) -> Dict[str, str]:
4444
tags[tag] = commit_hash
4545

4646
# Second pass: prefer peeled commit hashes when available
47-
for tag, commit_hash in tags.items():
47+
for tag, _ in tags.items():
4848
if tag in peeled_tags:
4949
tags[tag] = peeled_tags[tag]
5050

0 commit comments

Comments
 (0)