fix limit

This commit is contained in:
2025-07-23 10:18:02 -03:00
parent 475721252f
commit 3060eb5ac0
5 changed files with 18 additions and 12 deletions

View File

@@ -62,7 +62,7 @@ def lambda_handler(event: EventBridgeEvent, context: LambdaContext) -> bool:
class CourseNotFoundError(Exception):
def __init__(self, *args):
super().__init__('Course not found')
super().__init__('Course not found in SQLite')
def _get_course(course_id: str) -> dict: