Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
KonstantAnxiety committed Oct 25, 2023
1 parent 2974f1b commit 6c7ff0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terrarium/dl_gitmanager/dl_gitmanager/git_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ def _collect_paths_from_diffs(
for diff_path in (diff_item.a_path, diff_item.b_path):
if not diff_path:
continue
absolute_path = base_path / diff_path
if not without_deleted or absolute_path.exists():
result.add(str(absolute_path))
result_path = base_path / diff_path
if not without_deleted or result_path.exists():
result.add(str(result_path))

return sorted(result)

Expand Down

0 comments on commit 6c7ff0b

Please sign in to comment.