fix test import order

This commit is contained in:
coletdjnz 2024-12-08 13:47:21 +13:00
parent 0210836dda
commit fd236737b0
No known key found for this signature in database
GPG key ID: 91984263BB39894A

View file

@ -4,7 +4,6 @@ import shutil
import sys import sys
import unittest import unittest
from pathlib import Path from pathlib import Path
from yt_dlp.utils import YoutubeDLError
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
TEST_DATA_DIR = Path(os.path.dirname(os.path.abspath(__file__)), 'testdata') TEST_DATA_DIR = Path(os.path.dirname(os.path.abspath(__file__)), 'testdata')
@ -35,6 +34,8 @@ from yt_dlp._globals import (
plugins_enabled, plugins_enabled,
) )
from yt_dlp.utils import YoutubeDLError
EXTRACTOR_PLUGIN_SPEC = PluginSpec( EXTRACTOR_PLUGIN_SPEC = PluginSpec(
module_name='extractor', module_name='extractor',