Skip to content

Commit 9459acb

Browse files
committed
feedback: fix unused var style
1 parent 0d386bd commit 9459acb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/scripts/check_rendered_specs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def _resolve_head_blobs(paths: list[str]) -> dict[str, str]:
7676
# Format: "<mode> <type> <sha>\t<path>"
7777
meta, _, path = entry.partition("\t")
7878
try:
79-
_mode, kind, sha = meta.split(" ")
79+
_, kind, sha = meta.split(" ")
8080
except ValueError:
8181
continue
8282
if kind != "blob":

0 commit comments

Comments
 (0)