From a7d7e12d4cb808cb52b8f688718a25e351a65109 Mon Sep 17 00:00:00 2001 From: hajdul88 <52442977+hajdul88@users.noreply.github.com> Date: Thu, 14 Aug 2025 14:48:35 +0200 Subject: [PATCH] ruff fix --- cognee/tasks/documents/exceptions/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cognee/tasks/documents/exceptions/exceptions.py b/cognee/tasks/documents/exceptions/exceptions.py index 27907aaf1..737e9a3d1 100644 --- a/cognee/tasks/documents/exceptions/exceptions.py +++ b/cognee/tasks/documents/exceptions/exceptions.py @@ -30,7 +30,7 @@ class InvalidChunkSizeError(CogneeValidationError): class InvalidChunkerError(CogneeValidationError): def __init__(self): super().__init__( - message=f"chunker must be a valid Chunker class.", + message="chunker must be a valid Chunker class.", name="InvalidChunkerError", status_code=status.HTTP_400_BAD_REQUEST, )