Skip to content

Commit bef0a9d

Browse files
committed
fix: rename unused loop variable to satisfy ruff B007
1 parent 2ab35a9 commit bef0a9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sift_kg/visualize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ def _inject_ui(
466466

467467
# Support docs filter: max across all non-DOCUMENT nodes
468468
max_source_docs = 0
469-
for node_id, data in kg.graph.nodes(data=True):
469+
for _node_id, data in kg.graph.nodes(data=True):
470470
if data.get("entity_type") == "DOCUMENT":
471471
continue
472472
sd = data.get("source_documents", [])

0 commit comments

Comments
 (0)