summaryrefslogtreecommitdiff
path: root/git/exc.py
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/exc.py
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/exc.py')
-rw-r--r--git/exc.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/git/exc.py b/git/exc.py
index d29a25f6..e8ff784c 100644
--- a/git/exc.py
+++ b/git/exc.py
@@ -5,7 +5,8 @@
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
""" Module containing all exceptions thrown throughout the git package, """
-from gitdb.exc import BadName, BadObject # NOQA @UnusedWildImport skipcq: PYL-W0401, PYL-W0614
+from gitdb.exc import BadName # NOQA @UnusedWildImport skipcq: PYL-W0401, PYL-W0614
+from gitdb.exc import * # NOQA @UnusedWildImport skipcq: PYL-W0401, PYL-W0614
from git.compat import safe_decode
# typing ----------------------------------------------------