Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions code_review_graph/flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,11 @@ def incremental_trace_flows(
if not changed_files:
return 0

# Normalize to absolute paths — git diff returns relative paths but
# the graph stores absolute file_path values (see #569).
import os
changed_files = [os.path.abspath(f) for f in changed_files]

conn = store._conn
changed_file_set = set(changed_files)

Expand Down