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_actor.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'git/test/test_actor.py') diff --git a/git/test/test_actor.py b/git/test/test_actor.py index ee968455..d79673f8 100644 --- a/git/test/test_actor.py +++ b/git/test/test_actor.py @@ -4,9 +4,8 @@ # 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 assert_equal +from git import Actor class TestActor(object): -- cgit v1.2.3