mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-16 10:32:40 +09:00
[screencastomatic] Remove unused variable
This commit is contained in:
parent
0e4cb4f406
commit
e54a3a2f01
@ -31,7 +31,6 @@ class ScreencastOMaticIE(InfoExtractor):
|
|||||||
r"(?s)jwplayer\('mp4Player'\).setup\((\{.*?\})\);",
|
r"(?s)jwplayer\('mp4Player'\).setup\((\{.*?\})\);",
|
||||||
webpage, 'setup code')
|
webpage, 'setup code')
|
||||||
data = self._parse_json(setup_js, video_id, transform_source=js_to_json)
|
data = self._parse_json(setup_js, video_id, transform_source=js_to_json)
|
||||||
modes = data['modes']
|
|
||||||
try:
|
try:
|
||||||
video_data = next(
|
video_data = next(
|
||||||
m for m in data['modes'] if m.get('type') == 'html5')
|
m for m in data['modes'] if m.get('type') == 'html5')
|
||||||
|
Loading…
Reference in New Issue
Block a user