Currently mypy uses a hardcoded type for `NoneType`, I think it should use the one from typeshed. ```py reveal_type(None.__bool__()) # note: Revealed type is "builtins.bool" ```
Currently mypy uses a hardcoded type for
NoneType, I think it should use the one from typeshed.