]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/escapist.py
[extractor] Deprecate `_sort_formats`
[yt-dlp.git] / yt_dlp / extractor / escapist.py
index 4cd815ebc4c1aabfc321cf5f3c74f8328be81d1f..85a1cbf400b5548f9a6ff75e052494a758749bf1 100644 (file)
@@ -1,5 +1,3 @@
-from __future__ import unicode_literals
-
 from .common import InfoExtractor
 from ..utils import (
     determine_ext,
@@ -97,7 +95,6 @@ def _real_extract(self, url):
             'format_id': '%s-%sp' % (determine_ext(video['src']), video['res']),
             'height': int_or_none(video.get('res')),
         } for video in data['files']['videos']]
-        self._sort_formats(formats)
 
         return {
             'id': video_id,