about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2021-01-21 17:22:30 +0100
committerRemita Amine <remitamine@gmail.com>2021-01-21 17:22:30 +0100
commit3bb7769c405e02fc1078252cafbbd982913fe50c (patch)
treeaf936b7c78e351c0d793fa5edb40f4ab2c0019bd
parent8d286bd5b67004d9c5420f6e3f6b7f75d2ba6395 (diff)
downloadyoutube-dl-3bb7769c405e02fc1078252cafbbd982913fe50c.tar.gz
youtube-dl-3bb7769c405e02fc1078252cafbbd982913fe50c.tar.xz
youtube-dl-3bb7769c405e02fc1078252cafbbd982913fe50c.zip
[wat] remove unused variable
-rw-r--r--youtube_dl/extractor/wat.py9
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))