Browse Source

[compat] Add `types.NoneType`

pukkandan 1 year ago
parent
commit
e0c4db04dc
1 changed files with 12 additions and 0 deletions
  1. 12 0
      yt_dlp/compat/types.py

+ 12 - 0
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)