diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2024-10-23 06:33:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-23 06:33:50 +0000 |
commit | d784464399b600ba9516bbcec6286f11d68974dd (patch) | |
tree | 4058e9e4d72f6ac1d5b992f6a2fb725ae29183c8 /yt_dlp/utils/_utils.py | |
parent | dd2e24446954246a2ec4d4a7e95531f52a14b351 (diff) |
Remove Python 3.8 support (#11321)
Closes #10086
Authored by: bashonly
Diffstat (limited to 'yt_dlp/utils/_utils.py')
-rw-r--r-- | yt_dlp/utils/_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/utils/_utils.py b/yt_dlp/utils/_utils.py index ea748898f..7aff67ddf 100644 --- a/yt_dlp/utils/_utils.py +++ b/yt_dlp/utils/_utils.py @@ -9,6 +9,7 @@ import datetime as dt import email.header import email.utils import errno +import functools import hashlib import hmac import html.entities @@ -44,7 +45,6 @@ import xml.etree.ElementTree from . import traversal -from ..compat import functools # isort: split from ..compat import ( compat_etree_fromstring, compat_expanduser, |