Removes expanduser in favor of type path

Removes the usage of expanduser in favor of the type 'path' for
module options. Related to #12263
pull/23166/head
Tim Rupp 7 years ago committed by Brian Coca
parent 3efb11e225
commit e27b4c2ae4

@ -305,7 +305,6 @@ def _get_pip(module, env=None, executable=None):
pip = None
if executable is not None:
executable = os.path.expanduser(executable)
if os.path.isabs(executable):
pip = executable
else:
@ -402,7 +401,7 @@ def main():
extra_args=dict(),
editable=dict(default=True, type='bool'),
chdir=dict(type='path'),
executable=dict(),
executable=dict(type='path'),
umask=dict(),
),
required_one_of=[['name', 'requirements']],

Loading…
Cancel
Save