summaryrefslogtreecommitdiff
path: root/git/test/lib/__init__.py
diff options
context:
space:
mode:
authorCraig Northway <craig.northway@gmail.com>2014-07-25 11:26:48 +1000
committerCraig Northway <craig.northway@gmail.com>2014-07-25 19:19:22 +1000
commita23d0d8617ba3119069e610fc7b0850a17322726 (patch)
treed8bc5213dd7e7c7f0befdf65afecb13d5435f873 /git/test/lib/__init__.py
parent75194159abce545bfa38c3172efb42da9b0017dc (diff)
downloadgitpython-a23d0d8617ba3119069e610fc7b0850a17322726.tar.gz
Autopep8 fixes with maximum line length 120
Diffstat (limited to 'git/test/lib/__init__.py')
-rw-r--r--git/test/lib/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/git/test/lib/__init__.py b/git/test/lib/__init__.py
index a0656438..a94b6617 100644
--- a/git/test/lib/__init__.py
+++ b/git/test/lib/__init__.py
@@ -5,7 +5,7 @@
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
import inspect
-# TODO: Separate names - they do repeat unfortunately. Also deduplicate it,
+# TODO: Separate names - they do repeat unfortunately. Also deduplicate it,
# redesign decorators to support multiple database types in succession.
from base import *
@@ -14,5 +14,5 @@ from asserts import *
from helper import *
-__all__ = [ name for name, obj in locals().items()
- if not (name.startswith('_') or inspect.ismodule(obj)) ]
+__all__ = [name for name, obj in locals().items()
+ if not (name.startswith('_') or inspect.ismodule(obj))]