1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-06 02:49:35 +02:00
yt-dlp/yt_dlp/compat/types.py
2023-07-22 09:00:45 +05:30

13 lines
237 B
Python

# 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)