aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/downloader/websocket.py
diff options
context:
space:
mode:
authorfelix <felix.von.s@posteo.de>2022-02-04 14:37:02 +0100
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-04-18 04:26:43 +0530
commit77f9033095cd8e1092a80db67f2b577cf13f95a8 (patch)
treed3124c5be0d7b00d225da2edd1f5f7e244aef88f /yt_dlp/downloader/websocket.py
parent19a0394044bfad36cd665450271b8eb048a41c02 (diff)
downloadhypervideo-pre-77f9033095cd8e1092a80db67f2b577cf13f95a8.tar.lz
hypervideo-pre-77f9033095cd8e1092a80db67f2b577cf13f95a8.tar.xz
hypervideo-pre-77f9033095cd8e1092a80db67f2b577cf13f95a8.zip
[compat] Split into sub-modules (#2173)
Authored by: fstirlitz, pukkandan
Diffstat (limited to 'yt_dlp/downloader/websocket.py')
-rw-r--r--yt_dlp/downloader/websocket.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/downloader/websocket.py b/yt_dlp/downloader/websocket.py
index 6b190cd90..8465f9713 100644
--- a/yt_dlp/downloader/websocket.py
+++ b/yt_dlp/downloader/websocket.py
@@ -1,4 +1,3 @@
-import asyncio
import contextlib
import os
import signal
@@ -15,6 +14,7 @@ else:
from .common import FileDownloader
from .external import FFmpegFD
+from ..compat import asyncio
class FFmpegSinkFD(FileDownloader):