From 486863eb58344dfa2a7cb842ed2a1a4e02e013ea Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Tue, 16 Dec 2025 12:04:16 +0100 Subject: [PATCH] Sovled ruff linting hints --- src/pkgmgr/core/git/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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",