File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 5
5
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6
6
""" Module containing all exceptions thrown throughout the git package, """
7
7
8
+ from gitdb .exc import BadName # NOQA @UnusedWildImport skipcq: PYL-W0401, PYL-W0614
8
9
from gitdb .exc import * # NOQA @UnusedWildImport skipcq: PYL-W0401, PYL-W0614
9
10
from git .compat import safe_decode
10
11
Original file line number Diff line number Diff line change 16
16
from .tree import *
17
17
# Fix import dependency - add IndexObject to the util module, so that it can be
18
18
# imported by the submodule.base
19
- smutil .IndexObject = IndexObject
20
- smutil .Object = Object
19
+ smutil .IndexObject = IndexObject # type: ignore[attr-defined]
20
+ smutil .Object = Object # type: ignore[attr-defined]
21
21
del (smutil )
22
22
23
23
# must come after submodule was made available
You can’t perform that action at this time.
0 commit comments