mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2025-02-17 01:17:54 +01:00
Fixed formatting according to flake8
This commit is contained in:
parent
2d68da7781
commit
d76916f79e
@ -6,6 +6,7 @@ from ..utils import (
|
||||
determine_ext,
|
||||
)
|
||||
|
||||
|
||||
class RightNowMediaIE(InfoExtractor):
|
||||
IE_NAME = 'rightnowmedia'
|
||||
_VALID_URL = r'https?://(?:www\.)?rightnowmedia\.org/Content/(?P<id>[0-9]+)/(?:downloadAndEmbed)'
|
||||
@ -30,7 +31,6 @@ class RightNowMediaIE(InfoExtractor):
|
||||
# Get All The Formats
|
||||
formats = []
|
||||
for video_info in video_info_dicts['downloadLinks']:
|
||||
video_url = video_info.get('src')
|
||||
quality = 'high' if 'HD 1080p' in video_info["QualityName"] else 'low'
|
||||
formats.append({
|
||||
'url': video_info["Link"],
|
||||
|
Loading…
Reference in New Issue
Block a user