Skip to content

Commit

Permalink
fix: song streams type list[str] to int
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioMrtz authored Aug 27, 2024
1 parent 837534d commit 3a74fb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Backend/app/spotify_electron/song/base_song_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class BaseSongDAO(ABC):
artist: str
seconds_duration: int
genre: Genre
streams: list[str]
streams: int


@dataclass
Expand All @@ -33,7 +33,7 @@ class BaseSongDTO(ABC):
artist: str
seconds_duration: int
genre: Genre
streams: list[str]
streams: int


@dataclass
Expand Down

0 comments on commit 3a74fb6

Please sign in to comment.