1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Remove unneeded shorter alias.

This commit is contained in:
Chris Hunt 2019-09-04 22:27:37 -04:00
parent ebac7c012a
commit 41f0ea076e

View file

@ -1089,15 +1089,14 @@ class WheelBuilder(object):
if should_unpack:
python_tag = pep425tags.implementation_tag
_cache = self.wheel_cache # shorter name
with indent_log():
build_success, build_failure = [], []
for req, ephem in buildset:
if should_unpack:
if ephem:
output_dir = _cache.get_ephem_path_for_link(req.link)
output_dir = self.wheel_cache.get_ephem_path_for_link(req.link)
else:
output_dir = _cache.get_path_for_link(req.link)
output_dir = self.wheel_cache.get_path_for_link(req.link)
else:
output_dir = self._wheel_dir