]> jfr.im git - yt-dlp.git/blobdiff - devscripts/make_supportedsites.py
[cleanup] Sort imports
[yt-dlp.git] / devscripts / make_supportedsites.py
index 729f60a0e794b66e6db39154f8c8844d1d36c9ea..0a0d08f56fa1b80b1f7cce0c4fc0e37481fe5a88 100644 (file)
@@ -1,12 +1,8 @@
 #!/usr/bin/env python3
-from __future__ import unicode_literals
-
-import io
 import optparse
 import os
 import sys
 
-
 # Import yt_dlp
 ROOT_DIR = os.path.join(os.path.dirname(__file__), '..')
 sys.path.insert(0, ROOT_DIR)
@@ -23,11 +19,11 @@ def main():
 
     def gen_ies_md(ies):
         for ie in ies:
-            ie_md = '**{0}**'.format(ie.IE_NAME)
+            ie_md = f'**{ie.IE_NAME}**'
             if ie.IE_DESC is False:
                 continue
             if ie.IE_DESC is not None:
-                ie_md += ': {0}'.format(ie.IE_DESC)
+                ie_md += f': {ie.IE_DESC}'
             search_key = getattr(ie, 'SEARCH_KEY', None)
             if search_key is not None:
                 ie_md += f'; "{ie.SEARCH_KEY}:" prefix'
@@ -40,7 +36,7 @@ def gen_ies_md(ies):
         ' - ' + md + '\n'
         for md in gen_ies_md(ies))
 
-    with io.open(outfile, 'w', encoding='utf-8') as outf:
+    with open(outfile, 'w', encoding='utf-8') as outf:
         outf.write(out)