summaryrefslogtreecommitdiff
path: root/git/index/base.py
diff options
context:
space:
mode:
authorAntoine Musso <hashar@free.fr>2014-11-16 21:06:57 +0100
committerAntoine Musso <hashar@free.fr>2014-11-16 21:06:57 +0100
commitbed3b0989730cdc3f513884325f1447eb378aaee (patch)
treedced9fc6823d9a7b99e8b8b47e31d25e49ed7d26 /git/index/base.py
parent614907b7445e2ed8584c1c37df7e466e3b56170f (diff)
downloadgitpython-bed3b0989730cdc3f513884325f1447eb378aaee.tar.gz
pep8 linting (double spaces before comment)
E261 at least two spaces before inline comment
Diffstat (limited to 'git/index/base.py')
-rw-r--r--git/index/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/index/base.py b/git/index/base.py
index 197056b3..870b2393 100644
--- a/git/index/base.py
+++ b/git/index/base.py
@@ -94,7 +94,7 @@ class IndexFile(LazyMixin, diff.Diffable, Serializable):
before operating on it using the git command"""
__slots__ = ("repo", "version", "entries", "_extension_data", "_file_path")
_VERSION = 2 # latest version we support
- S_IFGITLINK = S_IFGITLINK # a submodule
+ S_IFGITLINK = S_IFGITLINK # a submodule
def __init__(self, repo, file_path=None):
"""Initialize this Index instance, optionally from the given ``file_path``.