Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ebd9ce5

Browse filesBrowse files
committed
Fix unused import linting
1 parent 9ac6bb0 commit ebd9ce5
Copy full SHA for ebd9ce5

File tree

1 file changed

+10
-10
lines changed
Filter options

1 file changed

+10
-10
lines changed

‎git/exc.py

Copy file name to clipboardExpand all lines: git/exc.py
+10-10Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
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 (
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
8+
from gitdb.exc import ( # noqa: @UnusedImport
9+
AmbiguousObjectName,
10+
BadName,
11+
BadObject,
12+
BadObjectType,
13+
InvalidDBRoot,
14+
ODBError,
15+
ParseError,
16+
UnsupportedOperation,
17+
to_hex_sha,
1818
)
1919
from git.compat import safe_decode
2020
from git.util import remove_password_if_present

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.