mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-11-09 10:30:43 +00:00
Fix e0c4db04dc for pypy
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user