From 506966d1e8df6932cefab39430f659b1e35b9d13 Mon Sep 17 00:00:00 2001 From: bashonly <88596187+bashonly@users.noreply.github.com> Date: Wed, 12 Jun 2024 06:51:34 +0000 Subject: [PATCH] Apply suggestions from code review --- yt_dlp/extractor/_extractors.py | 2 +- yt_dlp/extractor/watchertv.py | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/yt_dlp/extractor/_extractors.py b/yt_dlp/extractor/_extractors.py index a2c82dfc3..7a2001ec2 100644 --- a/yt_dlp/extractor/_extractors.py +++ b/yt_dlp/extractor/_extractors.py @@ -2384,8 +2384,8 @@ from .washingtonpost import ( ) from .wat import WatIE from .watchertv import ( - WatcherTVSeasonIE, WatcherTVIE, + WatcherTVSeasonIE, ) from .wdr import ( WDRIE, diff --git a/yt_dlp/extractor/watchertv.py b/yt_dlp/extractor/watchertv.py index 8c01814c0..b475e2a1b 100644 --- a/yt_dlp/extractor/watchertv.py +++ b/yt_dlp/extractor/watchertv.py @@ -71,8 +71,8 @@ class WatcherTVIE(DropoutBaseIE): 'uploader_url': 'https://vimeo.com/user80538407', 'uploader': 'OTT Videos', }, - 'expected_warnings': ['Ignoring subtitle tracks found in the HLS manifest'] - } + 'expected_warnings': ['Ignoring subtitle tracks found in the HLS manifest'], + }, ] @@ -86,8 +86,8 @@ class WatcherTVSeasonIE(DropoutSeasonBaseIE): 'playlist_count': 8, 'info_dict': { 'id': 'ghost-files-season-1', - 'title': 'Ghost Files - Season 1' - } + 'title': 'Ghost Files - Season 1', + }, }, { 'url': 'https://www.watchertv.com/are-you-scared', @@ -95,8 +95,8 @@ class WatcherTVSeasonIE(DropoutSeasonBaseIE): 'playlist_count': 3, 'info_dict': { 'id': 'are-you-scared-season-1', - 'title': 'Are You Scared - Season 1' - } + 'title': 'Are You Scared - Season 1', + }, }, { 'url': 'https://www.watchertv.com/watcher-one-offs', @@ -104,7 +104,7 @@ class WatcherTVSeasonIE(DropoutSeasonBaseIE): 'playlist_count': 16, 'info_dict': { 'id': 'watcher-one-offs-season-1', - 'title': 'Watcher One Offs - Season 1' - } - } + 'title': 'Watcher One Offs - Season 1', + }, + }, ]