From ecfdad18ec96c04f5e45d31d20f770133704f9a3 Mon Sep 17 00:00:00 2001 From: wuyiqunLu Date: Sat, 7 Sep 2024 23:10:00 +0800 Subject: [PATCH] fix lint --- vision_agent/utils/execute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vision_agent/utils/execute.py b/vision_agent/utils/execute.py index 7633fa33..7967367e 100644 --- a/vision_agent/utils/execute.py +++ b/vision_agent/utils/execute.py @@ -243,7 +243,7 @@ def __str__(self) -> str: f"----- stdout -----\n{stdout_str}\n----- stderr -----\n{stderr_str}" ) - def to_json(self) -> bytes: + def to_json(self) -> dict[str, list[str]]: return {"stdout": self.stdout, "stderr": self.stderr}