X-Git-Url: https://jfr.im/git/yt-dlp.git/blobdiff_plain/db50f19d76c6870a5a13d0cab9287d684fd7449a..add96eb9f84cfffe85682bf2fb85135746994ee8:/yt_dlp/extractor/nfl.py diff --git a/yt_dlp/extractor/nfl.py b/yt_dlp/extractor/nfl.py index 3f83cd20e..c537c1c47 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 @@ def _real_extract(self, url): 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)