From 4b1c8309573a4c6e3d5e883cc64338a8e19d6778 Mon Sep 17 00:00:00 2001 From: Glenn Pavlovic Date: Thu, 2 Feb 2023 16:37:30 -0800 Subject: [PATCH] fix formatting issue --- youtube_dl/extractor/rumble.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/youtube_dl/extractor/rumble.py b/youtube_dl/extractor/rumble.py index e163c63e5..8a18d12b7 100644 --- a/youtube_dl/extractor/rumble.py +++ b/youtube_dl/extractor/rumble.py @@ -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):