From: pukkandan Date: Sat, 22 Jul 2023 03:26:45 +0000 (+0530) Subject: [compat] Add `types.NoneType` X-Git-Tag: 2023.09.24~131 X-Git-Url: https://jfr.im/git/yt-dlp.git/commitdiff_plain/e0c4db04dc82a699bdabd9821ddc239ebe17d30a [compat] Add `types.NoneType` --- diff --git a/yt_dlp/compat/types.py b/yt_dlp/compat/types.py new file mode 100644 index 000000000..ae7024564 --- /dev/null +++ b/yt_dlp/compat/types.py @@ -0,0 +1,12 @@ +# flake8: noqa: F405 +from types import * # noqa: F403 + +from .compat_utils import passthrough_module + +passthrough_module(__name__, 'types') +del passthrough_module + +try: + NoneType # >= 3.10 +except NameError: + NoneType = type(None)