Skip to content

Commit

Permalink
Add @UnusedImport to recent changes
Browse files Browse the repository at this point in the history
  • Loading branch information
DeflateAwning committed Oct 6, 2023
1 parent 8edc53b commit 9ac6bb0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions git/exc.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
""" Module containing all exceptions thrown throughout the git package, """

from gitdb.exc import (
AmbiguousObjectName,
BadName,
BadObject,
BadObjectType,
InvalidDBRoot,
ODBError,
ParseError,
UnsupportedOperation,
to_hex_sha,
) # 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
)
from git.compat import safe_decode
from git.util import remove_password_if_present

Expand Down

0 comments on commit 9ac6bb0

Please sign in to comment.