Skip to content

Commit bf2427a

Browse files
committed
WIP: facts.podman: fix PodmanPs
1 parent 3ba3a9f commit bf2427a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyinfra/facts/podman.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ def command(self) -> str:
4444
def process(self, output: Iterable[str]) -> List[Dict[str, Any]]:
4545
output = json.loads(("").join(output))
4646
assert isinstance(output, list)
47-
return json.loads(output) # type: ignore
47+
return output # type: ignore

0 commit comments

Comments
 (0)