]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/popcorntimes.py
[compat] Remove more functions
[yt-dlp.git] / yt_dlp / extractor / popcorntimes.py
index ed741a07bef57c0777fd5ea787f54c410415f937..ddc5ec8c8ec6c07d66f04801ace15201479dc366 100644 (file)
@@ -1,8 +1,5 @@
 from .common import InfoExtractor
-from ..compat import (
-    compat_b64decode,
-    compat_chr,
-)
+from ..compat import compat_b64decode
 from ..utils import int_or_none
 
 
@@ -50,7 +47,7 @@ def _real_extract(self, url):
                 c_ord += 13
                 if upper < c_ord:
                     c_ord -= 26
-            loc_b64 += compat_chr(c_ord)
+            loc_b64 += chr(c_ord)
 
         video_url = compat_b64decode(loc_b64).decode('utf-8')