logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: 3bb7769c405e02fc1078252cafbbd982913fe50c
parent 8d286bd5b67004d9c5420f6e3f6b7f75d2ba6395
Author: Remita Amine <remitamine@gmail.com>
Date:   Thu, 21 Jan 2021 17:22:30 +0100

[wat] remove unused variable

Diffstat:

Myoutube_dl/extractor/wat.py9---------
1 file changed, 0 insertions(+), 9 deletions(-)

diff --git a/youtube_dl/extractor/wat.py b/youtube_dl/extractor/wat.py @@ -43,15 +43,6 @@ class WatIE(InfoExtractor): }, ] - _FORMATS = ( - (200, 416, 234), - (400, 480, 270), - (600, 640, 360), - (1200, 640, 360), - (1800, 960, 540), - (2500, 1280, 720), - ) - def _real_extract(self, url): video_id = self._match_id(url) video_id = video_id if video_id.isdigit() and len(video_id) > 6 else compat_str(int(video_id, 36))