Fix some type hints

This commit is contained in:
Keith Edmunds 2023-01-19 23:32:20 +00:00
parent 92852f7e27
commit c04114b07a

View File

@ -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.
"""