summaryrefslogtreecommitdiff
path: root/git/objects/__init__.py
diff options
context:
space:
mode:
authorAntoine Musso <hashar@free.fr>2014-11-16 20:15:50 +0100
committerAntoine Musso <hashar@free.fr>2014-11-16 20:46:41 +0100
commitf5d11b750ecc982541d1f936488248f0b42d75d3 (patch)
tree8be522510315f5adc32c0c55acd45dc1074294da /git/objects/__init__.py
parent7aba59a2609ec768d5d495dafd23a4bce8179741 (diff)
downloadgitpython-f5d11b750ecc982541d1f936488248f0b42d75d3.tar.gz
pep8 linting (whitespaces)
W191 indentation contains tabs E221 multiple spaces before operator E222 multiple spaces after operator E225 missing whitespace around operator E271 multiple spaces after keyword W292 no newline at end of file W293 blank line contains whitespace W391 blank line at end of file
Diffstat (limited to 'git/objects/__init__.py')
-rw-r--r--git/objects/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/__init__.py b/git/objects/__init__.py
index 77f69d29..90fe81a8 100644
--- a/git/objects/__init__.py
+++ b/git/objects/__init__.py
@@ -18,4 +18,4 @@ from commit import *
from tree import *
__all__ = [ name for name, obj in locals().items()
- if not (name.startswith('_') or inspect.ismodule(obj)) ] \ No newline at end of file
+ if not (name.startswith('_') or inspect.ismodule(obj)) ]