diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-07-18 05:50:54 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-07-18 06:31:14 +0530 |
commit | 6929b41a216e20f0498cbd99880b17eab16777c9 (patch) | |
tree | acbf7d1155c39cdd4ae1e3567b994ea8c69958cd /yt_dlp/utils.py | |
parent | 0b5583b112d418ba4d4eefcde1cd4d54ab95458a (diff) | |
download | hypervideo-pre-6929b41a216e20f0498cbd99880b17eab16777c9.tar.lz hypervideo-pre-6929b41a216e20f0498cbd99880b17eab16777c9.tar.xz hypervideo-pre-6929b41a216e20f0498cbd99880b17eab16777c9.zip |
Remove Python 3.6 support
Closes #3764
Diffstat (limited to 'yt_dlp/utils.py')
-rw-r--r-- | yt_dlp/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yt_dlp/utils.py b/yt_dlp/utils.py index 7648b6fce..f0e9ee8c4 100644 --- a/yt_dlp/utils.py +++ b/yt_dlp/utils.py @@ -1,3 +1,4 @@ +import asyncio import atexit import base64 import binascii @@ -46,7 +47,7 @@ import urllib.request import xml.etree.ElementTree import zlib -from .compat import asyncio, functools # isort: split +from .compat import functools # isort: split from .compat import ( compat_etree_fromstring, compat_expanduser, |