Skip to content

Commit 2af3679

Browse files
committed
Remove @UnusedImport from an import that is used
Inclusion in __all__ is considered a use.
1 parent 7545b80 commit 2af3679

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git/db.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Module with our own gitdb implementation - it uses the git command"""
22
from git.util import bin_to_hex, hex_to_bin
33
from gitdb.base import OInfo, OStream
4-
from gitdb.db import GitDB # @UnusedImport
4+
from gitdb.db import GitDB
55
from gitdb.db import LooseObjectDB
66

77
from gitdb.exc import BadObject

0 commit comments

Comments
 (0)