]> jfr.im git - yt-dlp.git/blobdiff - test/test_all_urls.py
[cleanup] Add more ruff rules (#10149)
[yt-dlp.git] / test / test_all_urls.py
index d70da8cae5ea30873ac91ab68823ecbd03b84282..848c96ff02f816e40259cbefa5b2b3825e175e5f 100644 (file)
@@ -1,19 +1,17 @@
 #!/usr/bin/env python3
+
 # Allow direct execution
 import os
 import sys
 import unittest
-import collections
+
 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
 
 
-from test.helper import gettestcases
+import collections
 
-from yt_dlp.extractor import (
-    FacebookIE,
-    gen_extractors,
-    YoutubeIE,
-)
+from test.helper import gettestcases
+from yt_dlp.extractor import FacebookIE, YoutubeIE, gen_extractors
 
 
 class TestAllURLsMatching(unittest.TestCase):