Skip to content

Commit 1cc6484

Browse files
committed
reword
1 parent b85d57f commit 1cc6484

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/private/pypi/parse_requirements.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
#

0 commit comments

Comments
 (0)