Skip to content

Commit

Permalink
refactor(event_handler): correct typo in exception docstring (#4948)
Browse files Browse the repository at this point in the history
fix(event_handler): correct typo in exception docstring

Co-authored-by: Leandro Damascena <[email protected]>
  • Loading branch information
tlinhart and leandrodamascena authored Aug 13, 2024
1 parent 7ab1342 commit df22da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws_lambda_powertools/event_handler/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit df22da1

Please sign in to comment.