From b02662d4e870a34d2c6d97d4f702fcc1311e5177 Mon Sep 17 00:00:00 2001 From: Kostis Anagnostopoulos Date: Sat, 15 Oct 2016 13:42:33 +0200 Subject: src: reduce needless deps to `gitdb.util` --- git/objects/tag.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'git/objects/tag.py') diff --git a/git/objects/tag.py b/git/objects/tag.py index cefff083..19cb04bf 100644 --- a/git/objects/tag.py +++ b/git/objects/tag.py @@ -5,12 +5,9 @@ # the BSD License: http://www.opensource.org/licenses/bsd-license.php """ Module containing all object based types. """ from . import base -from .util import ( - get_object_type_by_name, - parse_actor_and_date -) -from gitdb.util import hex_to_bin -from git.compat import defenc +from .util import get_object_type_by_name, parse_actor_and_date +from ..util import hex_to_bin +from ..compat import defenc __all__ = ("TagObject", ) -- cgit v1.2.3