diff options
author | Remita Amine <remitamine@gmail.com> | 2021-01-21 17:22:30 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2021-01-21 17:22:30 +0100 |
commit | 3bb7769c405e02fc1078252cafbbd982913fe50c (patch) | |
tree | af936b7c78e351c0d793fa5edb40f4ab2c0019bd /youtube_dl | |
parent | 8d286bd5b67004d9c5420f6e3f6b7f75d2ba6395 (diff) |
[wat] remove unused variable
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/wat.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/youtube_dl/extractor/wat.py b/youtube_dl/extractor/wat.py index 7214bfebf..f6940b371 100644 --- 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)) |