Appease flake8

This commit is contained in:
Anthony Sottile
2017-08-04 08:31:06 -07:00
committed by GitHub
parent b22ee6b191
commit 5f3e162646

View File

@@ -17,10 +17,11 @@ healthy = helpers.basic_healthy
def get_env_patch(venv): # pragma: windows no cover
config = os.path.join(venv, 'bin') if sys.platform == 'cygwin' else venv
return (
('NODE_VIRTUAL_ENV', venv),
('NPM_CONFIG_PREFIX', os.path.join(venv, 'bin') if sys.platform == 'cygwin' else venv),
('npm_config_prefix', os.path.join(venv, 'bin') if sys.platform == 'cygwin' else venv),
('NPM_CONFIG_PREFIX', config),
('npm_config_prefix', config),
('NODE_PATH', os.path.join(venv, 'lib', 'node_modules')),
('PATH', (os.path.join(venv, 'bin'), os.pathsep, Var('PATH'))),
)