diff --git a/src/pkgmgr/core/git/__init__.py b/src/pkgmgr/core/git/__init__.py index 2f266c3..0a7c6e1 100644 --- a/src/pkgmgr/core/git/__init__.py +++ b/src/pkgmgr/core/git/__init__.py @@ -1,5 +1,8 @@ from __future__ import annotations +from .errors import GitError +from .run import run + """ Lightweight helper functions around Git commands. @@ -8,9 +11,6 @@ logic (release, version, changelog) does not have to deal with the details of subprocess handling. """ -from .errors import GitError -from .run import run - __all__ = [ "GitError", "run",