Source code for ralph.git.git_run_result

"""GitRunResult: result of a git subprocess invocation."""

from __future__ import annotations

from dataclasses import dataclass


[docs] @dataclass(frozen=True) class GitRunResult: """Result of a git subprocess invocation.""" args: tuple[str, ...] returncode: int stdout: str stderr: str