aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--yt_dlp/compat/types.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/yt_dlp/compat/types.py b/yt_dlp/compat/types.py
index ae7024564..4aa3b0efd 100644
--- a/yt_dlp/compat/types.py
+++ b/yt_dlp/compat/types.py
@@ -7,6 +7,7 @@ passthrough_module(__name__, 'types')
del passthrough_module
try:
- NoneType # >= 3.10
-except NameError:
+ # NB: pypy has builtin NoneType, so checking NameError won't work
+ from types import NoneType # >= 3.10
+except ImportError:
NoneType = type(None)