summaryrefslogtreecommitdiff
path: root/git/odict.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/odict.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/odict.py')
-rw-r--r--git/odict.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/odict.py b/git/odict.py
index 55bb1c43..96444ca0 100644
--- a/git/odict.py
+++ b/git/odict.py
@@ -1063,7 +1063,7 @@ class Items(object):
def __contains__(self, item): return item in self._main.items()
- def __len__(self): return len(self._main._sequence) # easier :-)
+ def __len__(self): return len(self._main._sequence) # easier :-)
def __iter__(self): return self._main.iteritems()
@@ -1184,7 +1184,7 @@ class Values(object):
def __contains__(self, item): return item in self._main.values()
- def __len__(self): return len(self._main._sequence) # easier :-)
+ def __len__(self): return len(self._main._sequence) # easier :-)
def __iter__(self): return self._main.itervalues()