Skip to content

Commit

Permalink
Update path variable to be appended in which_all function
Browse files Browse the repository at this point in the history
  • Loading branch information
zackees committed Aug 19, 2024
1 parent cc5bd40 commit a8a1952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def which_all(name: str, paths: list[str]) -> list[str]:
for path in paths:
p = shutil.which(name, path=path)
if p is not None:
out.append(p)
out.append(path)
return out


Expand Down

0 comments on commit a8a1952

Please sign in to comment.