Skip to content

Commit df22da1

Browse files
refactor(event_handler): correct typo in exception docstring (#4948)
fix(event_handler): correct typo in exception docstring Co-authored-by: Leandro Damascena <[email protected]>
1 parent 7ab1342 commit df22da1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws_lambda_powertools/event_handler/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def __init__(self, msg: str = "Not found"):
3939

4040

4141
class InternalServerError(ServiceError):
42-
"""API Gateway and ALB Not Found Internal Server Error (500)"""
42+
"""API Gateway and ALB Internal Server Error (500)"""
4343

4444
def __init__(self, message: str):
4545
super().__init__(HTTPStatus.INTERNAL_SERVER_ERROR, message)

0 commit comments

Comments
 (0)