From c04114b07a94460b7c0d6fe5670bb3bc97ab56e9 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Thu, 19 Jan 2023 23:32:20 +0000 Subject: [PATCH] Fix some type hints --- app/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models.py b/app/models.py index 06d560b..7476bf2 100644 --- a/app/models.py +++ b/app/models.py @@ -486,9 +486,9 @@ class PlaylistRows(Base): @classmethod def get_unplayed_rows(cls, session: Session, - playlist_id: int) -> List[int]: + playlist_id: int) -> List["PlaylistRows]: """ - For passed playlist, return a list of track rows that + For passed playlist, return a list of playlist rows that have not been played. """