reverted previous changes because it was stupid
This commit is contained in:
parent
f5646276d4
commit
e973ac618d
@ -242,34 +242,18 @@ class Page:
|
|||||||
cls._clean_collection(song.feature_artist_collection, collections)
|
cls._clean_collection(song.feature_artist_collection, collections)
|
||||||
cls._clean_collection(song.main_artist_collection, collections)
|
cls._clean_collection(song.main_artist_collection, collections)
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def _parse_song(cls, song_soup: BeautifulSoup) -> Song:
|
|
||||||
return Song()
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def _fetch_song_from_source(cls, source: Source, stop_at_level: int = 1) -> Song:
|
def _fetch_song_from_source(cls, source: Source, stop_at_level: int = 1) -> Song:
|
||||||
return Song()
|
return Song()
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def _parse_artist(cls, album_soup: BeautifulSoup) -> Album:
|
|
||||||
return Album()
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def _fetch_album_from_source(cls, source: Source, stop_at_level: int = 1) -> Album:
|
def _fetch_album_from_source(cls, source: Source, stop_at_level: int = 1) -> Album:
|
||||||
return Album()
|
return Album()
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def _parse_artist(cls, artist_soup: BeautifulSoup) -> Artist:
|
|
||||||
return Artist()
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def _fetch_artist_from_source(cls, source: Source, stop_at_level: int = 1) -> Artist:
|
def _fetch_artist_from_source(cls, source: Source, stop_at_level: int = 1) -> Artist:
|
||||||
return Artist()
|
return Artist()
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def _parse_label(cls, label_soup: BeautifulSoup) -> Label:
|
|
||||||
return Label()
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def _fetch_label_from_source(cls, source: Source, stop_at_level: int = 1) -> Label:
|
def _fetch_label_from_source(cls, source: Source, stop_at_level: int = 1) -> Label:
|
||||||
return Label()
|
return Label()
|
||||||
|
Loading…
Reference in New Issue
Block a user