aboutsummaryrefslogtreecommitdiff
path: root/git/objects/tag.py
diff options
context:
space:
mode:
authorKostis Anagnostopoulos <ankostis@gmail.com>2016-10-15 13:42:33 +0200
committerKostis Anagnostopoulos <ankostis@gmail.com>2016-10-16 02:46:32 +0200
commitb02662d4e870a34d2c6d97d4f702fcc1311e5177 (patch)
tree6f2bc1d942f979b3bb379d833700fe33f955415d /git/objects/tag.py
parent0210e394e0776d0b7097bf666bebd690ed0c0e4f (diff)
downloadGitPython-b02662d4e870a34d2c6d97d4f702fcc1311e5177.tar.gz
GitPython-b02662d4e870a34d2c6d97d4f702fcc1311e5177.zip
src: reduce needless deps to `gitdb.util`
Diffstat (limited to 'git/objects/tag.py')
-rw-r--r--git/objects/tag.py9
1 files changed, 3 insertions, 6 deletions
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", )