We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b85d57f commit 1cc6484Copy full SHA for 1cc6484
1 file changed
python/private/pypi/parse_requirements.bzl
@@ -127,7 +127,7 @@ def parse_requirements(
127
))
128
129
requirements_by_platform = {}
130
- for target_platform, reqs_ in requirements.items():
+ for target_platform, parse_results in requirements.items():
131
# Replicate a surprising behavior that WORKSPACE builds allowed:
132
# Defining a repo with the same name multiple times, but only the last
133
# definition is respected.
@@ -137,7 +137,7 @@ def parse_requirements(
137
# Lines with different markers are not considered duplicates.
138
requirements_dict = {}
139
for entry in sorted(
140
- reqs_,
+ parse_results,
141
# Get the longest match and fallback to original WORKSPACE sorting,
142
# which should get us the entry with most extras.
143
#
0 commit comments