From f333ff8f7cded73abd7b6e66d98b962075ee403d Mon Sep 17 00:00:00 2001 From: "Antti S." Date: Wed, 8 Jan 2025 15:57:16 +0200 Subject: [PATCH] Formatting fixes. 'Skip download test' parameter to self-documenting one. --- yt_dlp/extractor/redbulltv.py | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/yt_dlp/extractor/redbulltv.py b/yt_dlp/extractor/redbulltv.py index 838ebb3db..7b2356318 100644 --- a/yt_dlp/extractor/redbulltv.py +++ b/yt_dlp/extractor/redbulltv.py @@ -1,10 +1,6 @@ from .common import InfoExtractor from ..networking.exceptions import HTTPError -from ..utils import ( - ExtractorError, - float_or_none, - traverse_obj -) +from ..utils import ExtractorError, float_or_none, traverse_obj class RedBullTVIE(InfoExtractor): @@ -173,9 +169,7 @@ class RedBullIE(InfoExtractor): 'description': 'md5:5546aa612958c08a98faaad4abce484d', 'duration': 904.0, }, - 'params': { - 'skip_download': True, - }, + 'params': {'skip_download': 'm3u8'}, }, { 'url': 'https://www.redbull.com/int-en/films/kilimanjaro-mountain-of-greatness', 'md5': 'db8271a7200d40053a1809ed0dd574ff', @@ -186,9 +180,7 @@ class RedBullIE(InfoExtractor): 'description': 'md5:e44aedc87ff8587307a4a20fdfe8db61', 'duration': 1834.0, }, - 'params': { - 'skip_download': True, - }, + 'params': {'skip_download': 'm3u8'}, }, { 'url': 'https://www.redbull.com/int-en/recap-videos/uci-mountain-bike-world-cup-2017-mens-xco-finals-from-vallnord', 'only_matching': True, @@ -228,10 +220,10 @@ class RedBullIE(InfoExtractor): rrn_data = self._download_json( f'https://www.redbull.com/v3/api/graphql/v1/v3/feed/{locale}', display_id, query={ - 'filter[type]': filter_type, - 'page[limit]': 1, + 'filter[type]': filter_type, + 'page[limit]': 1, 'filter[uriSlug]': display_id, - 'disableUsageRestrictions': 'true', + 'disableUsageRestrictions': 'true', 'rb3Schema': 'v1:pageConfig', 'rb3PageUrl': f'/{region.lower()}-{lang.lower()}/{filter_type}/{display_id}', })['data']