Solved ruff linting hints
Some checks failed
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / lint-shell (push) Has been cancelled
Mark stable commit / lint-python (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled

This commit is contained in:
Kevin Veen-Birkenbach
2025-12-16 11:42:40 +01:00
parent 0119af330f
commit ee9d7758ed
3 changed files with 3 additions and 5 deletions

View File

@@ -1,5 +1,3 @@
from __future__ import annotations
""" """
Lightweight helper functions around Git commands. Lightweight helper functions around Git commands.
@@ -8,10 +6,12 @@ logic (release, version, changelog) does not have to deal with the
details of subprocess handling. details of subprocess handling.
""" """
from __future__ import annotations
from .errors import GitError from .errors import GitError
from .run import run from .run import run
__all__ = [ __all__ = [
"GitError", "GitError",
"run" "run",
] ]

View File

@@ -2,7 +2,6 @@ from __future__ import annotations
from typing import Set from typing import Set
from ..errors import GitError
from ..run import run from ..run import run

View File

@@ -2,7 +2,6 @@ from __future__ import annotations
from typing import List from typing import List
from ..errors import GitError
from ..run import run from ..run import run