From 3b03b86ccc4e2e1f0c5f200be719ef10b746021c Mon Sep 17 00:00:00 2001 From: Paillat Date: Mon, 22 Apr 2024 10:34:55 +0200 Subject: [PATCH] :bulb: Update comment --- src/engines/LLMEngine/AnthropicLLMEngine.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engines/LLMEngine/AnthropicLLMEngine.py b/src/engines/LLMEngine/AnthropicLLMEngine.py index 0f0065d..b093e5b 100644 --- a/src/engines/LLMEngine/AnthropicLLMEngine.py +++ b/src/engines/LLMEngine/AnthropicLLMEngine.py @@ -61,9 +61,9 @@ class AnthropicLLMEngine(BaseLLMEngine): returnable = fix_busted_json.repair_json(content) returnable = orjson.loads(returnable) return returnable - except ( + except ( # noqa wait for library to imlement pep https://peps.python.org/pep-0352/ (Required Superclass for Exceptions Exception - ) as e: # noqa wait for library to imlement pep https://peps.python.org/pep-0352/ (Required Superclass for Exceptions + ) as e: tries += 1 else: return content