We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ac6bb0 commit ebd9ce5Copy full SHA for ebd9ce5
git/exc.py
@@ -5,16 +5,16 @@
5
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6
""" Module containing all exceptions thrown throughout the git package, """
7
8
-from gitdb.exc import (
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
+from gitdb.exc import ( # noqa: @UnusedImport
+ AmbiguousObjectName,
+ BadName,
+ BadObject,
+ BadObjectType,
+ InvalidDBRoot,
+ ODBError,
+ ParseError,
+ UnsupportedOperation,
+ to_hex_sha,
18
)
19
from git.compat import safe_decode
20
from git.util import remove_password_if_present
0 commit comments