From b0e628d7bdf2a56ec81585b25718ab5429f65502 Mon Sep 17 00:00:00 2001 From: bauen1 Date: Thu, 31 Oct 2024 15:25:17 +0100 Subject: [PATCH] WIP: facts.podman: fix PodmanPs --- pyinfra/facts/podman.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyinfra/facts/podman.py b/pyinfra/facts/podman.py index 593702119..982f2b117 100644 --- a/pyinfra/facts/podman.py +++ b/pyinfra/facts/podman.py @@ -44,4 +44,4 @@ def command(self) -> str: def process(self, output: Iterable[str]) -> List[Dict[str, Any]]: output = json.loads(("").join(output)) assert isinstance(output, list) - return json.loads(output) # type: ignore + return output # type: ignore