Skip to content

Commit

Permalink
Remove @UnusedImport from an import that is used
Browse files Browse the repository at this point in the history
Inclusion in __all__ is considered a use.
  • Loading branch information
EliahKagan committed Oct 20, 2023
1 parent 7545b80 commit 2af3679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git/db.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Module with our own gitdb implementation - it uses the git command"""
from git.util import bin_to_hex, hex_to_bin
from gitdb.base import OInfo, OStream
from gitdb.db import GitDB # @UnusedImport
from gitdb.db import GitDB
from gitdb.db import LooseObjectDB

from gitdb.exc import BadObject
Expand Down

0 comments on commit 2af3679

Please sign in to comment.