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

Assert that we aren't using most of "move_to_correct_build_directory"

Since self._ideal_build_dir is only either None or a string, we must
have always been returning from this function.

This goes back to pip 10.0.0, so this code has been dead for some time.
This commit is contained in:
Chris Hunt 2019-11-26 18:39:19 -05:00
parent 5ba702894a
commit 9886e8dea1

View file

@ -412,8 +412,9 @@ class InstallRequirement(object):
])
)
if self.source_dir is not None:
return
assert self.source_dir is not None
return
assert self._temp_build_dir
assert (