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
$ mypy -h
...
None and Optional handling:
Adjust how values of type 'None' are handled. For more context on how mypy handles values of type 'None', see: https://mypy.readthedocs.io/en/stable/kinds_of_types.html#no-strict-optional
...
What we should see:
$ mypy -h
...
None and Optional handling:
Adjust how values of type 'None' are handled. For more context on how mypy handles values of type 'None', see: https://mypy.readthedocs.io/en/stable/kinds_of_types.html#optional-types-and-the-none-type
...
Solution:
Replace no-strict-optional with optional-types-and-the-none-type In the url
The text was updated successfully, but these errors were encountered:
Documentation
This is an issue with command documentation
Running on:
Issue:
What we should see:
Solution:
Replace
no-strict-optional
withoptional-types-and-the-none-type
In the urlThe text was updated successfully, but these errors were encountered: