summaryrefslogtreecommitdiff
path: root/git/exc.py
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2021-04-23 21:36:48 +0800
committerGitHub <noreply@github.com>2021-04-23 21:36:48 +0800
commit4119a576251448793c07ebd080534948cad2f170 (patch)
tree7bffff60a75770882832eec5ff2efcac9741139f /git/exc.py
parent9f12c8c34371a7c46dad6788a48cf092042027ec (diff)
parent043e15fe140cfff8725d4f615f42fa1c55779402 (diff)
downloadgitpython-4119a576251448793c07ebd080534948cad2f170.tar.gz
Merge pull request #1226 from muggenhor/testing
ci: check types with mypy
Diffstat (limited to 'git/exc.py')
-rw-r--r--git/exc.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/git/exc.py b/git/exc.py
index 358e7ae4..6e646921 100644
--- a/git/exc.py
+++ b/git/exc.py
@@ -5,6 +5,7 @@
# 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 # NOQA @UnusedWildImport skipcq: PYL-W0401, PYL-W0614
from gitdb.exc import * # NOQA @UnusedWildImport skipcq: PYL-W0401, PYL-W0614
from git.compat import safe_decode