mirror of
https://github.com/l1ving/youtube-dl
synced 2025-03-10 21:47:25 +08:00
Removed unused site_id, flake8 suggestion
This commit is contained in:
parent
5eac3800d8
commit
e58e4111c4
@ -38,7 +38,7 @@ class CanvasIE(InfoExtractor):
|
|||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
mobj = re.match(self._VALID_URL, url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
site_id, video_id = mobj.group('site_id'), mobj.group('id')
|
video_id = mobj.group('id')
|
||||||
|
|
||||||
token = self._download_json('https://media-services-public.vrt.be/vualto-video-aggregator-web/'
|
token = self._download_json('https://media-services-public.vrt.be/vualto-video-aggregator-web/'
|
||||||
'rest/external/v1/tokens', None, data={},
|
'rest/external/v1/tokens', None, data={},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user