]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/crowdbunker.py
[extractor] Deprecate `_sort_formats`
[yt-dlp.git] / yt_dlp / extractor / crowdbunker.py
index 72906afefa3326ceaaedf6ae3ff323f8c7a4f401..d83c01560c9b4ad19e2d9fd60e0364cf64b7de11 100644 (file)
@@ -1,6 +1,3 @@
-# coding: utf-8
-from __future__ import unicode_literals
-
 import itertools
 
 from .common import InfoExtractor
@@ -63,7 +60,6 @@ def _real_extract(self, url):
             'width': int_or_none(image.get('width')),
         } for image in video_json.get('thumbnails') or [] if image.get('url')]
 
-        self._sort_formats(formats)
         return {
             'id': id,
             'title': video_json.get('title'),