diff --git a/src/scmrepo/git/__init__.py b/src/scmrepo/git/__init__.py index 5a9fad99..6b9265aa 100644 --- a/src/scmrepo/git/__init__.py +++ b/src/scmrepo/git/__init__.py @@ -22,6 +22,12 @@ from .backend.dulwich import DulwichBackend from .backend.gitpython import GitPythonBackend from .backend.pygit2 import Pygit2Backend +from .objects import ( # noqa: F401, pylint: disable=unused-import + GitCommit, + GitObject, + GitTag, + GitTrie, +) from .stash import Stash if TYPE_CHECKING: