diff options
Diffstat (limited to 'git/test/test_index.py')
-rw-r--r-- | git/test/test_index.py | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/git/test/test_index.py b/git/test/test_index.py index 08dfdd12..2eef4b5d 100644 --- a/git/test/test_index.py +++ b/git/test/test_index.py @@ -4,8 +4,23 @@ # 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 * -from git import * +from git.test.lib import ( + TestBase, + fixture_path, + fixture, + with_rw_repo +) +from git import ( + IndexFile, + BlobFilter, + UnmergedEntriesError, + Tree, + Object, + Diff, + GitCommandError, + CheckoutError, + +) from gitdb.util import hex_to_bin import os import sys |