summaryrefslogtreecommitdiff
path: root/git/refs
diff options
context:
space:
mode:
authorTrym Bremnes <trym.bremnes@gmail.com>2021-10-02 16:42:35 +0200
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-10-03 19:28:45 +0800
commitce4afe46d211cdfb611b8e8109bb0dc160a12540 (patch)
treec05060c7b2b125af158f3454ea2d9fb458fcc8dc /git/refs
parent53d94b8091b36847bb9e495c76bb5a3ec2a2fdb5 (diff)
downloadgitpython-ce4afe46d211cdfb611b8e8109bb0dc160a12540.tar.gz
Revert "Replace wildcard imports with concrete imports"
This reverts commit 53d94b8091b36847bb9e495c76bb5a3ec2a2fdb5. The reason for the revert is that the commit in question introduced a regression where certain modules, functions and classes that were exposed before were no longer exposed. See https://github.com/gitpython-developers/GitPython/pull/1352#issuecomment-932757204 for additional information.
Diffstat (limited to 'git/refs')
-rw-r--r--git/refs/__init__.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/git/refs/__init__.py b/git/refs/__init__.py
index 075c65c8..1486dffe 100644
--- a/git/refs/__init__.py
+++ b/git/refs/__init__.py
@@ -1,9 +1,9 @@
# flake8: noqa
# import all modules in order, fix the names they require
-from .symbolic import SymbolicReference
-from .reference import Reference
-from .head import HEAD, Head
-from .tag import TagReference
-from .remote import RemoteReference
+from .symbolic import *
+from .reference import *
+from .head import *
+from .tag import *
+from .remote import *
-from .log import RefLogEntry, RefLog
+from .log import *