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/test_refs.py | |
parent | c80d727e374321573bb00e23876a67c77ff466e3 (diff) | |
download | gitpython-1b9d3b961bdf79964b883d3179f085d8835e528d.tar.gz |
Removed 'from X import *' whereever possible
Diffstat (limited to 'git/test/test_refs.py')
-rw-r--r-- | git/test/test_refs.py | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/git/test/test_refs.py b/git/test/test_refs.py index 4df3fa8a..af33765a 100644 --- a/git/test/test_refs.py +++ b/git/test/test_refs.py @@ -4,9 +4,20 @@ # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php -from mock import * -from git.test.lib import * -from git import * +from git.test.lib import ( + TestBase, + with_rw_repo +) +from git import ( + Reference, + Head, + TagReference, + RemoteReference, + Commit, + SymbolicReference, + GitCommandError, + RefLog +) import git.refs as refs from git.util import Actor from git.objects.tag import TagObject |