From 140185b0f9235fbd5b6b67df097eb4002ea305f1 Mon Sep 17 00:00:00 2001 From: Dillon Laird Date: Mon, 29 Apr 2024 17:42:44 -0700 Subject: [PATCH] format fix --- vision_agent/agent/execution.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/vision_agent/agent/execution.py b/vision_agent/agent/execution.py index 6067ab70..7414014e 100644 --- a/vision_agent/agent/execution.py +++ b/vision_agent/agent/execution.py @@ -215,9 +215,7 @@ def reliability_guard(maximum_memory_bytes: Optional[int] = None) -> None: import resource if platform.uname().system == "Windows": - raise NotImplementedError( - "Memory limits are not supported on Windows." - ) + raise NotImplementedError("Memory limits are not supported on Windows.") resource.setrlimit( resource.RLIMIT_AS, (maximum_memory_bytes, maximum_memory_bytes)