1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 11:39:28 +00:00

fix formatting issue

This commit is contained in:
Glenn Pavlovic 2023-02-02 16:37:30 -08:00
parent a777aeeda0
commit 4b1c830957

View file

@ -74,9 +74,9 @@ class RumbleIE(InfoExtractor):
@classmethod
def suitable(cls, url):
return (cls.get_re('jscript_url').match(url) is not None or
cls.get_re('list_url').match(url) is not None or
cls.get_re('iframe_url').match(url) is not None)
return (cls.get_re('jscript_url').match(url) is not None
or cls.get_re('list_url').match(url) is not None
or cls.get_re('iframe_url').match(url) is not None)
@staticmethod
def rumble_embedded_id(page_data):