Update yt_dlp/extractor/boomplay.py

pull/11252/head
N/Ame 4 months ago committed by GitHub
parent 16d68723dc
commit 445531c5a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -388,14 +388,14 @@ class BoomPlayGenericPlaylistIE(BoomPlayBaseIE):
@classmethod
def suitable(cls, url):
return False if any(ie.suitable(url) for ie in (
BoomPlayEpisodeIE,
BoomPlayMusicIE,
BoomPlayPlaylistIE,
BoomPlayPodcastIE,
BoomPlaySearchPageIE,
BoomPlayVideoIE,
)) else super().suitable(url)
return False if any(ie.suitable(url) for ie in (
BoomPlayEpisodeIE,
BoomPlayMusicIE,
BoomPlayPlaylistIE,
BoomPlayPodcastIE,
BoomPlaySearchPageIE,
BoomPlayVideoIE,
)) else super().suitable(url)
def _real_extract(self, url):
_id = self._generic_id(url)

Loading…
Cancel
Save