Address PR feedback

This commit is contained in:
Andrew S. Brown 2019-01-27 17:55:11 -08:00
parent 950bc2c7fb
commit 1eed1b51b8
2 changed files with 3 additions and 8 deletions

View file

@ -7,7 +7,6 @@ import sys
import pre_commit.constants as C
from pre_commit import git
from pre_commit.envcontext import envcontext
from pre_commit.envcontext import UNSET
from pre_commit.envcontext import Var
from pre_commit.languages import helpers
from pre_commit.util import clean_path_on_failure
@ -22,7 +21,6 @@ healthy = helpers.basic_healthy
def get_env_patch(venv):
return (
('GOBIN', UNSET),
('PATH', (os.path.join(venv, 'bin'), os.pathsep, Var('PATH'))),
)