Skip to content

Commit

Permalink
Fix init imports
Browse files Browse the repository at this point in the history
Authored by: bashonly
  • Loading branch information
bashonly committed Mar 6, 2024
1 parent 6d716d4 commit 938d80d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions yt_dlp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import sys

from .networking.impersonate import ImpersonateTarget

if sys.version_info < (3, 8):
raise ImportError(
f'You are using an unsupported version of Python. Only Python versions 3.8 and above are supported by yt-dlp') # noqa: F541
Expand All @@ -21,6 +19,7 @@
from .downloader.external import get_external_downloader
from .extractor import list_extractor_classes
from .extractor.adobepass import MSO_INFO
from .networking.impersonate import ImpersonateTarget
from .options import parseOpts
from .postprocessor import (
FFmpegExtractAudioPP,
Expand Down

0 comments on commit 938d80d

Please sign in to comment.