From e973ac618d0451497745b084c4a894a2cf49fb31 Mon Sep 17 00:00:00 2001 From: Hellow2 Date: Mon, 27 Mar 2023 16:30:12 +0200 Subject: [PATCH] reverted previous changes because it was stupid --- src/music_kraken/pages/abstract.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/music_kraken/pages/abstract.py b/src/music_kraken/pages/abstract.py index 4a743ad..c6d0adc 100644 --- a/src/music_kraken/pages/abstract.py +++ b/src/music_kraken/pages/abstract.py @@ -242,34 +242,18 @@ class Page: cls._clean_collection(song.feature_artist_collection, collections) cls._clean_collection(song.main_artist_collection, collections) - @classmethod - def _parse_song(cls, song_soup: BeautifulSoup) -> Song: - return Song() - @classmethod def _fetch_song_from_source(cls, source: Source, stop_at_level: int = 1) -> Song: return Song() - - @classmethod - def _parse_artist(cls, album_soup: BeautifulSoup) -> Album: - return Album() @classmethod def _fetch_album_from_source(cls, source: Source, stop_at_level: int = 1) -> Album: return Album() - @classmethod - def _parse_artist(cls, artist_soup: BeautifulSoup) -> Artist: - return Artist() - @classmethod def _fetch_artist_from_source(cls, source: Source, stop_at_level: int = 1) -> Artist: return Artist() - @classmethod - def _parse_label(cls, label_soup: BeautifulSoup) -> Label: - return Label() - @classmethod def _fetch_label_from_source(cls, source: Source, stop_at_level: int = 1) -> Label: return Label()