diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-04 14:25:39 +0100 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-04 14:25:39 +0100 |
| commit | 1b9d3b961bdf79964b883d3179f085d8835e528d (patch) | |
| tree | 7031b7853f92879ee2e106f1e4fbf302c5c20ea6 /git/test/lib/__init__.py | |
| parent | c80d727e374321573bb00e23876a67c77ff466e3 (diff) | |
| download | GitPython-1b9d3b961bdf79964b883d3179f085d8835e528d.tar.gz GitPython-1b9d3b961bdf79964b883d3179f085d8835e528d.zip | |
Removed 'from X import *' whereever possible
Diffstat (limited to 'git/test/lib/__init__.py')
| -rw-r--r-- | git/test/lib/__init__.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/git/test/lib/__init__.py b/git/test/lib/__init__.py index 26ea13a3..033a1104 100644 --- a/git/test/lib/__init__.py +++ b/git/test/lib/__init__.py @@ -5,9 +5,8 @@ # the BSD License: http://www.opensource.org/licenses/bsd-license.php import inspect -from mock import * -from asserts import * -from helper import * +from .asserts import * +from .helper import * __all__ = [name for name, obj in locals().items() if not (name.startswith('_') or inspect.ismodule(obj))] |
