From 35b1f7d26afad735bdebf5b0de396031d49690bf Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Fri, 13 Dec 2024 17:08:05 +0100 Subject: [PATCH] chore: Update typo in code Update typo in string in code Chore COG-656 --- cognee/modules/data/exceptions/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cognee/modules/data/exceptions/exceptions.py b/cognee/modules/data/exceptions/exceptions.py index 7d7bbd632..5117f3cac 100644 --- a/cognee/modules/data/exceptions/exceptions.py +++ b/cognee/modules/data/exceptions/exceptions.py @@ -13,7 +13,7 @@ class UnstructuredLibraryImportError(CogneeApiError): class UnauthorizedDataAccessError(CogneeApiError): def __init__( self, - message: str = "Usesr does not have permission to access this data.", + message: str = "User does not have permission to access this data.", name: str = "UnauthorizedDataAccessError", status_code=status.HTTP_401_UNAUTHORIZED, ):