backs out unnecessary blank line

This commit is contained in:
Rory Prendergast 2018-01-02 12:59:09 -08:00
parent 9eadfb92fd
commit 355196f92e

View file

@ -76,7 +76,6 @@ def no_git_env():
# while running pre-commit hooks in submodules. # while running pre-commit hooks in submodules.
# GIT_DIR: Causes git clone to clone wrong thing # GIT_DIR: Causes git clone to clone wrong thing
# GIT_INDEX_FILE: Causes 'error invalid object ...' during commit # GIT_INDEX_FILE: Causes 'error invalid object ...' during commit
return { return {
k: v for k, v in os.environ.items() k: v for k, v in os.environ.items()
if not k.startswith('GIT_') or k in {'GIT_SSH'} if not k.startswith('GIT_') or k in {'GIT_SSH'}