refactor: Improve code readability by formatting function signatures and descriptions
Some checks failed
Backend CI / lint (push) Failing after 9s
Backend CI / test (push) Failing after 1m29s

This commit is contained in:
JSC
2025-10-04 22:27:12 +02:00
parent 12243b1424
commit c9f6bff723
4 changed files with 130 additions and 85 deletions

View File

@@ -13,7 +13,11 @@ logger = get_logger(__name__)
class DashboardService:
"""Service for dashboard statistics and analytics."""
def __init__(self, sound_repository: SoundRepository, user_repository: UserRepository) -> None:
def __init__(
self,
sound_repository: SoundRepository,
user_repository: UserRepository,
) -> None:
"""Initialize the dashboard service."""
self.sound_repository = sound_repository
self.user_repository = user_repository