Skip to content

Commit

Permalink
removed unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
xnetcat committed Nov 6, 2022
1 parent 2e4b51d commit 6e0dd60
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spotdl/types/album.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from dataclasses import dataclass
from typing import Any, Dict, List

from spotdl.types.song import SongList, Song
from spotdl.types.song import SongList
from spotdl.utils.spotify import SpotifyClient


Expand Down
2 changes: 1 addition & 1 deletion spotdl/types/playlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from dataclasses import dataclass
from typing import Any, Dict, List

from spotdl.types.song import SongList, Song
from spotdl.types.song import SongList
from spotdl.utils.spotify import SpotifyClient


Expand Down
2 changes: 1 addition & 1 deletion spotdl/types/saved.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from dataclasses import dataclass
from typing import Any, Dict, List
from spotdl.types.song import SongList, Song
from spotdl.types.song import SongList
from spotdl.utils.spotify import SpotifyClient


Expand Down

0 comments on commit 6e0dd60

Please sign in to comment.