1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-06-28 01:18:30 +00:00

Apply suggestions from code review

This commit is contained in:
bashonly 2024-06-12 06:51:34 +00:00 committed by McSwindler
parent 93857c326e
commit 9572578686
2 changed files with 10 additions and 10 deletions

View File

@ -2417,8 +2417,8 @@
) )
from .wat import WatIE from .wat import WatIE
from .watchertv import ( from .watchertv import (
WatcherTVSeasonIE,
WatcherTVIE, WatcherTVIE,
WatcherTVSeasonIE,
) )
from .wdr import ( from .wdr import (
WDRIE, WDRIE,

View File

@ -71,8 +71,8 @@ class WatcherTVIE(DropoutBaseIE):
'uploader_url': 'https://vimeo.com/user80538407', 'uploader_url': 'https://vimeo.com/user80538407',
'uploader': 'OTT Videos', '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, 'playlist_count': 8,
'info_dict': { 'info_dict': {
'id': 'ghost-files-season-1', 'id': 'ghost-files-season-1',
'title': 'Ghost Files - Season 1' 'title': 'Ghost Files - Season 1',
} },
}, },
{ {
'url': 'https://www.watchertv.com/are-you-scared', 'url': 'https://www.watchertv.com/are-you-scared',
@ -95,8 +95,8 @@ class WatcherTVSeasonIE(DropoutSeasonBaseIE):
'playlist_count': 3, 'playlist_count': 3,
'info_dict': { 'info_dict': {
'id': 'are-you-scared-season-1', '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', 'url': 'https://www.watchertv.com/watcher-one-offs',
@ -104,7 +104,7 @@ class WatcherTVSeasonIE(DropoutSeasonBaseIE):
'playlist_count': 16, 'playlist_count': 16,
'info_dict': { 'info_dict': {
'id': 'watcher-one-offs-season-1', 'id': 'watcher-one-offs-season-1',
'title': 'Watcher One Offs - Season 1' 'title': 'Watcher One Offs - Season 1',
} },
} },
] ]