File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ def parse_requirements(
127127 ))
128128
129129 requirements_by_platform = {}
130- for target_platform , reqs_ in requirements .items ():
130+ for target_platform , parse_results in requirements .items ():
131131 # Replicate a surprising behavior that WORKSPACE builds allowed:
132132 # Defining a repo with the same name multiple times, but only the last
133133 # definition is respected.
@@ -137,7 +137,7 @@ def parse_requirements(
137137 # Lines with different markers are not considered duplicates.
138138 requirements_dict = {}
139139 for entry in sorted (
140- reqs_ ,
140+ parse_results ,
141141 # Get the longest match and fallback to original WORKSPACE sorting,
142142 # which should get us the entry with most extras.
143143 #
You can’t perform that action at this time.
0 commit comments