fix bugs in the backend

This commit is contained in:
maxDorninger
2025-07-01 17:54:33 +02:00
parent 8d512f665e
commit a43748d7b5
2 changed files with 2 additions and 4 deletions

View File

@@ -19,9 +19,7 @@ notification_repository_dep = Annotated[
def get_notification_service(
notification_repository: NotificationRepository = Depends(
notification_repository_dep
),
notification_repository: notification_repository_dep
) -> NotificationService:
return NotificationService(notification_repository)