From 14911a4b55cb823e3fd8ff86fd7c536c928db7a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Linhart?= Date: Tue, 13 Aug 2024 10:48:44 +0200 Subject: [PATCH] fix(event_handler): correct typo in exception docstring --- aws_lambda_powertools/event_handler/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws_lambda_powertools/event_handler/exceptions.py b/aws_lambda_powertools/event_handler/exceptions.py index 4a2838275b1..ca5dbbc9830 100644 --- a/aws_lambda_powertools/event_handler/exceptions.py +++ b/aws_lambda_powertools/event_handler/exceptions.py @@ -39,7 +39,7 @@ def __init__(self, msg: str = "Not found"): class InternalServerError(ServiceError): - """API Gateway and ALB Not Found Internal Server Error (500)""" + """API Gateway and ALB Internal Server Error (500)""" def __init__(self, message: str): super().__init__(HTTPStatus.INTERNAL_SERVER_ERROR, message)