Skip to content

Commit af71f3c

Browse files
committed
# This is a combination of 19 commits.
parent 02b4f86 author Damian <[email protected]> 1633754869 -0400 committer Damian <[email protected]> 1633754928 -0400 # This is a combination of 14 commits.tree 962cf1d58cffa4bd5102aa4cc6c1adaedb8c3cc0 parent 02b4f86 author Damian <[email protected]> 1633754869 -0400 committer Damian <[email protected]> 1633754892 -0400 # This is a combination of 13 commits. # This is the 1st commit message: Return a better error message if a `file:` URL is not found (#10263) Co-authored-by: Tzu-ping Chung <[email protected]> Co-authored-by: Pradyun Gedam <[email protected]> # This is the commit message #2: Prefer failure causes when backtracking # This is the commit message #3: This fix is in the wrong PR confusing matters # This is the commit message #4: Change name to backtrack_causes Create is_backtrack_cause function # This is the commit message #5: Fix newlines # This is the commit message #6: Typo Fix in Comment # This is the commit message #7: Fix lint errors # This is the commit message #8: Add News Item # This is the commit message #9: Newline # This is the commit message #10: Better news. # This is the commit message #11: Fix known depths # This is the commit message #12: Fix known depths # This is the commit message #13: Fix known depths # This is the commit message #14: This fix is in the wrong PR confusing matters # This is the commit message #16: Change name to backtrack_causes Create is_backtrack_cause function # This is the commit message #18: Fix newlines # This is the commit message #19: Typo Fix in Comment
1 parent 142e002 commit af71f3c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pip/_internal/resolution/resolvelib/provider.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,8 @@ def get_dependencies(self, candidate: Candidate) -> Sequence[Requirement]:
205205

206206
@staticmethod
207207
def is_backtrack_cause(
208-
identifier: str, backtrack_causes: Sequence["RequirementInformation"]
208+
identifier: str,
209+
backtrack_causes: Sequence["RequirementInformation"]
209210
) -> bool:
210211
for backtrack_cause in backtrack_causes:
211212
if identifier == backtrack_cause.requirement.name:

0 commit comments

Comments
 (0)