diff options
author | Trym Bremnes <trym.bremnes@gmail.com> | 2021-10-02 16:42:35 +0200 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-10-03 19:28:45 +0800 |
commit | ce4afe46d211cdfb611b8e8109bb0dc160a12540 (patch) | |
tree | c05060c7b2b125af158f3454ea2d9fb458fcc8dc /git/exc.py | |
parent | 53d94b8091b36847bb9e495c76bb5a3ec2a2fdb5 (diff) | |
download | gitpython-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.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 ---------------------------------------------------- |