diff options
Diffstat (limited to 'git/test/lib/__init__.py')
-rw-r--r-- | git/test/lib/__init__.py | 6 |
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))] |