Skip to content

Commit

Permalink
revert unrelated changes
Browse files Browse the repository at this point in the history
  • Loading branch information
k0mat committed Jan 6, 2021
1 parent 3ac93e4 commit 0f35687
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 103 deletions.
4 changes: 2 additions & 2 deletions spotdl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__all__ = [
'search',
'download',
'lyrics'
]
'patches'
]
95 changes: 0 additions & 95 deletions spotdl/lyrics.py

This file was deleted.

12 changes: 6 additions & 6 deletions spotdl/search/songObj.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ class SongObj():
# ! it allows us a convenient way of setting a search provider without using globals
searchProvider = search_and_get_best_match

#====================
#=== Constructors ===
#====================
# ====================
# === Constructors ===
# ====================
def __init__(self, rawTrackMeta, rawAlbumMeta, rawArtistMeta, youtubeLink):
self. __rawTrackMeta = rawTrackMeta
self.__rawAlbumMeta = rawArtistMeta
self.__rawTrackMeta = rawTrackMeta
self.__rawAlbumMeta = rawArtistMeta
self.__rawArtistMeta = rawArtistMeta
self.__youtubeLink = youtubeLink
self.__youtubeLink = youtubeLink

#! constructors here are a bit mucky, there are two different constructors for two
#! different use cases, hence the actual __init__ function does not exist
Expand Down

0 comments on commit 0f35687

Please sign in to comment.