From fdf3160f494ca59f0ba0dd9d18fd737f0ed651b6 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Mon, 6 Dec 2021 15:59:03 +0000 Subject: [PATCH] buildroot: small whitespace fix Introduce a newline. David, we miss you. --- osbuild/buildroot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/osbuild/buildroot.py b/osbuild/buildroot.py index 0ae95220..5fe6675a 100644 --- a/osbuild/buildroot.py +++ b/osbuild/buildroot.py @@ -30,6 +30,7 @@ class CompletedBuild: `output`. The latter is also provided via `stderr`, `stdout` properties, making it a drop-in replacement for `CompletedProcess`. """ + def __init__(self, proc: subprocess.CompletedProcess, output: str): self.process = proc self.output = output