Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8edc53b commit 9ac6bb0Copy full SHA for 9ac6bb0
git/exc.py
@@ -6,16 +6,16 @@
6
""" Module containing all exceptions thrown throughout the git package, """
7
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
+ AmbiguousObjectName, # @UnusedImport
+ BadName, # @UnusedImport
+ BadObject, # @UnusedImport
+ BadObjectType, # @UnusedImport
+ InvalidDBRoot, # @UnusedImport
+ ODBError, # @UnusedImport
+ ParseError, # @UnusedImport
+ UnsupportedOperation, # @UnusedImport
+ to_hex_sha, # @UnusedImport
+)
19
from git.compat import safe_decode
20
from git.util import remove_password_if_present
21
0 commit comments