File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 6
6
""" Module containing all exceptions thrown throughout the git package, """
7
7
8
8
from gitdb .exc import (
9
- AmbiguousObjectName ,
10
- BadName ,
11
- BadObject ,
12
- BadObjectType ,
13
- InvalidDBRoot ,
14
- ODBError ,
15
- ParseError ,
16
- UnsupportedOperation ,
17
- to_hex_sha ,
18
- ) # NOQA @UnusedWildImport skipcq: PYL-W0401, PYL-W0614
9
+ AmbiguousObjectName , # @UnusedImport
10
+ BadName , # @UnusedImport
11
+ BadObject , # @UnusedImport
12
+ BadObjectType , # @UnusedImport
13
+ InvalidDBRoot , # @UnusedImport
14
+ ODBError , # @UnusedImport
15
+ ParseError , # @UnusedImport
16
+ UnsupportedOperation , # @UnusedImport
17
+ to_hex_sha , # @UnusedImport
18
+ )
19
19
from git .compat import safe_decode
20
20
from git .util import remove_password_if_present
21
21
You can’t perform that action at this time.
0 commit comments