diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-15 17:05:49 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-15 23:47:37 +0530 |
commit | abfecb7bc13efe8031a6c07cdefcf706db33014c (patch) | |
tree | 62d5ec9f300468a1d8cc67795d439c21cbd6592e | |
parent | 3b9d9f437469e651d5c65a0fa89d65bd2b95c738 (diff) | |
download | hypervideo-pre-abfecb7bc13efe8031a6c07cdefcf706db33014c.tar.lz hypervideo-pre-abfecb7bc13efe8031a6c07cdefcf706db33014c.tar.xz hypervideo-pre-abfecb7bc13efe8031a6c07cdefcf706db33014c.zip |
[utils] Fix WebSocketsWrapper
Bug in 3cea3edd1ac1101bd709dfa0305509028118b163
Closes #3422
-rw-r--r-- | yt_dlp/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yt_dlp/utils.py b/yt_dlp/utils.py index 966548466..34a938362 100644 --- a/yt_dlp/utils.py +++ b/yt_dlp/utils.py @@ -5258,6 +5258,7 @@ class Config: class WebSocketsWrapper(): """Wraps websockets module to use in non-async scopes""" + pool = None def __init__(self, url, headers=None, connect=True): self.loop = asyncio.events.new_event_loop() |