Skip to content

Commit 364a7c9

Browse files
committed
fixes for flake8
1 parent 069304c commit 364a7c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

git/repo/base.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ def __init__(self, path=None, odbt=GitCmdObjectDB, search_parent_directories=Fal
149149
# If GIT_DIR is specified but none of GIT_WORK_TREE and core.worktree is specified,
150150
# the current working directory is regarded as the top level of your working tree.
151151
self._working_tree_dir = os.path.dirname(self.git_dir)
152-
if os.environ.get('GIT_COMMON_DIR') is None:
152+
if os.environ.get('GIT_COMMON_DIR') is None:
153153
self._working_tree_dir = self.config_reader("repository").get(
154-
'core', 'worktree', fallback=self._working_tree_dir)
154+
'core', 'worktree', fallback=self._working_tree_dir)
155155
self._working_tree_dir = os.getenv('GIT_WORK_TREE', self._working_tree_dir)
156156
break
157157

0 commit comments

Comments
 (0)