From ce4afe46d211cdfb611b8e8109bb0dc160a12540 Mon Sep 17 00:00:00 2001 From: Trym Bremnes Date: Sat, 2 Oct 2021 16:42:35 +0200 Subject: 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. --- git/refs/__init__.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'git/refs') 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 * -- cgit v1.2.1