Apply suggestions from code review

This commit is contained in:
bashonly 2024-06-12 06:51:34 +00:00 committed by GitHub
parent 2ef8a19f6b
commit 506966d1e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 10 deletions

View File

@ -2384,8 +2384,8 @@ from .washingtonpost import (
) )
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',
} },
} },
] ]