From 137f07c27a88b07df57df5b2cdebebe3c7722bac Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 5 Aug 2024 11:06:10 +0200 Subject: Merging upstream version 2024.07.01. Signed-off-by: Daniel Baumann --- yt_dlp/extractor/nfl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'yt_dlp/extractor/nfl.py') diff --git a/yt_dlp/extractor/nfl.py b/yt_dlp/extractor/nfl.py index 3f83cd2..c537c1c 100644 --- a/yt_dlp/extractor/nfl.py +++ b/yt_dlp/extractor/nfl.py @@ -195,7 +195,7 @@ class NFLIE(NFLBaseIE): 'tags': 'count:6', 'duration': 157, 'categories': 'count:3', - } + }, }, { 'url': 'https://www.chiefs.com/listen/patrick-mahomes-travis-kelce-react-to-win-over-dolphins-the-breakdown', 'md5': '6886b32c24b463038c760ceb55a34566', @@ -332,7 +332,7 @@ class NFLPlusReplayIE(NFLBaseIE): def entries(): for replay in traverse_obj( - replays, ('items', lambda _, v: v['mcpPlaybackId'] and v['subType'] in requested_types) + replays, ('items', lambda _, v: v['mcpPlaybackId'] and v['subType'] in requested_types), ): video_id = replay['mcpPlaybackId'] yield self.url_result(f'{self._ANVATO_PREFIX}{video_id}', AnvatoIE, video_id) -- cgit v1.2.3