summaryrefslogtreecommitdiff
path: root/git/refs/__init__.py
diff options
context:
space:
mode:
authorTrym Bremnes <trym.bremnes@gmail.com>2021-09-30 08:54:43 +0200
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-10-01 22:27:00 +0800
commit53d94b8091b36847bb9e495c76bb5a3ec2a2fdb5 (patch)
treecab98dddccf406fde8ba89727e4f847f675fc18c /git/refs/__init__.py
parent5e73cabd041f45337b270d5e78674d88448929e6 (diff)
downloadgitpython-53d94b8091b36847bb9e495c76bb5a3ec2a2fdb5.tar.gz
Replace wildcard imports with concrete imports
All `from <module> import *` has now been replaced by `from <module> import X, Y, ...`. Contributes to #1349
Diffstat (limited to 'git/refs/__init__.py')
-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 1486dffe..075c65c8 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 *
-from .reference import *
-from .head import *
-from .tag import *
-from .remote import *
+from .symbolic import SymbolicReference
+from .reference import Reference
+from .head import HEAD, Head
+from .tag import TagReference
+from .remote import RemoteReference
-from .log import *
+from .log import RefLogEntry, RefLog