You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that mypy treats Union[str, None] as a different type from str, even though they should be equivalent (at least until proper type checking of None values has been implemented).
It seems that mypy treats
Union[str, None]
as a different type fromstr
, even though they should be equivalent (at least until proper type checking ofNone
values has been implemented).See python/typing#56.
The text was updated successfully, but these errors were encountered: