From 1b9d3b961bdf79964b883d3179f085d8835e528d Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 4 Jan 2015 14:25:39 +0100 Subject: Removed 'from X import *' whereever possible --- git/test/test_repo.py | 33 ++++++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 9 deletions(-) (limited to 'git/test/test_repo.py') diff --git a/git/test/test_repo.py b/git/test/test_repo.py index 3f1a3a3c..f6b46a6e 100644 --- a/git/test/test_repo.py +++ b/git/test/test_repo.py @@ -3,15 +3,30 @@ # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php -from git.test.lib import (patch, - TestBase, - with_rw_repo, - fixture, - assert_false, - assert_equal, - assert_true, - raises) -from git import * +from git.test.lib import ( + patch, + TestBase, + with_rw_repo, + fixture, + assert_false, + assert_equal, + assert_true, + raises +) +from git import ( + InvalidGitRepositoryError, + Repo, + NoSuchPathError, + Head, + Commit, + Tree, + IndexFile, + Git, + Reference, + GitDB, + Submodule, + GitCmdObjectDB +) from git.util import join_path_native from git.exc import BadObject from gitdb.util import bin_to_hex -- cgit v1.2.1