mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-22 02:01:50 +00:00
fix formatting issue
This commit is contained in:
parent
a777aeeda0
commit
4b1c830957
1 changed files with 3 additions and 3 deletions
|
@ -74,9 +74,9 @@ class RumbleIE(InfoExtractor):
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def suitable(cls, url):
|
def suitable(cls, url):
|
||||||
return (cls.get_re('jscript_url').match(url) is not None or
|
return (cls.get_re('jscript_url').match(url) is not None
|
||||||
cls.get_re('list_url').match(url) is not None or
|
or cls.get_re('list_url').match(url) is not None
|
||||||
cls.get_re('iframe_url').match(url) is not None)
|
or cls.get_re('iframe_url').match(url) is not None)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def rumble_embedded_id(page_data):
|
def rumble_embedded_id(page_data):
|
||||||
|
|
Loading…
Reference in a new issue