8000 Remove `@UnusedImport` from an import that is used · gitpython-developers/GitPython@2af3679 · GitHub
[go: up one dir, main page]

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 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

Lines changed: 1 addition & 1 deletion
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)
0