1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-11 01:50:31 +08:00

Removed unused site_id, flake8 suggestion

This commit is contained in:
Twilkie 2018-12-28 15:04:49 +01:00
parent 5eac3800d8
commit e58e4111c4

View File

@ -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={},