From 3168e15b09e524164d71d42bbd573bd5e8881ad8 Mon Sep 17 00:00:00 2001 From: Peter Rowlands Date: Tue, 8 Aug 2023 18:15:47 +0900 Subject: [PATCH] git: import objects with scmrepo.git --- src/scmrepo/git/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) 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: