File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 55# the BSD License: http://www.opensource.org/licenses/bsd-license.php
66""" Module containing all exceptions thrown throughout the git package, """
77
8+ from gitdb .exc import BadName # NOQA @UnusedWildImport skipcq: PYL-W0401, PYL-W0614
89from gitdb .exc import * # NOQA @UnusedWildImport skipcq: PYL-W0401, PYL-W0614
910from git .compat import safe_decode
1011
Original file line number Diff line number Diff line change 1616from .tree import *
1717# Fix import dependency - add IndexObject to the util module, so that it can be
1818# 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]
2121del (smutil )
2222
2323# must come after submodule was made available
You can’t perform that action at this time.
0 commit comments