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_stats.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'git/test/test_stats.py') diff --git a/git/test/test_stats.py b/git/test/test_stats.py index d827c680..c4535b75 100644 --- a/git/test/test_stats.py +++ b/git/test/test_stats.py @@ -4,13 +4,17 @@ # 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, + assert_equal +) +from git import Stats class TestStats(TestBase): - def test__list_from_string(self): + def test_list_from_string(self): output = fixture('diff_numstat') stats = Stats._list_from_string(self.rorepo, output) -- cgit v1.2.3