]> jfr.im git - yt-dlp.git/blob - yt_dlp/compat/types.py
ae7024564226fc2fad5d9ece86ab4e995e63dd28
[yt-dlp.git] / yt_dlp / compat / types.py
1 # flake8: noqa: F405
2 from types import * # noqa: F403
3
4 from .compat_utils import passthrough_module
5
6 passthrough_module(__name__, 'types')
7 del passthrough_module
8
9 try:
10 NoneType # >= 3.10
11 except NameError:
12 NoneType = type(None)