File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/pip/_internal/resolution/resolvelib Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -122,11 +122,11 @@ def narrow_requirement_selection(
122
122
before other requirements as a resolution can't be found while
123
123
there is a conflict.
124
124
"""
125
- backtrack_idenifiers = set ()
125
+ backtrack_identifiers = set ()
126
126
for info in backtrack_causes :
127
- backtrack_idenifiers .add (info .requirement .name )
127
+ backtrack_identifiers .add (info .requirement .name )
128
128
if info .parent is not None :
129
- backtrack_idenifiers .add (info .parent .name )
129
+ backtrack_identifiers .add (info .parent .name )
130
130
131
131
current_backtrack_causes = []
132
132
for identifier in identifiers :
@@ -137,7 +137,7 @@ def narrow_requirement_selection(
137
137
return [identifier ]
138
138
139
139
# Check if this identifier is a backtrack cause
140
- if identifier in backtrack_idenifiers :
140
+ if identifier in backtrack_identifiers :
141
141
current_backtrack_causes .append (identifier )
142
142
continue
143
143
You can’t perform that action at this time.
0 commit comments