diff options
author | Antoine Musso <hashar@free.fr> | 2014-11-16 21:06:57 +0100 |
---|---|---|
committer | Antoine Musso <hashar@free.fr> | 2014-11-16 21:06:57 +0100 |
commit | bed3b0989730cdc3f513884325f1447eb378aaee (patch) | |
tree | dced9fc6823d9a7b99e8b8b47e31d25e49ed7d26 /git/index/base.py | |
parent | 614907b7445e2ed8584c1c37df7e466e3b56170f (diff) | |
download | gitpython-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.py | 2 |
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``. |