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 static checks source code for type (annotation) violations. The ouput is pretty similar to other tools, e.g.:
fs/csm/common/model.py: note: In member "__init__" of class "StrProxy":
fs/csm/common/model.py:24: error: The return type of "__init__" must be None
fs/csm/common/logic/bundle.py: note: In member "__init__" of class "Bundle":
fs/csm/common/logic/bundle.py:8: error: The return type of "__init__" must be None
fs/csm/__init__.py: note: At top level:
fs/csm/__init__.py:2: error: Cannot determine type of '__path__'
fs/__init__.py:2: error: Cannot determine type of '__path__'
Would be nice to control mypy through prospector as well (to get pylint-compatible output etc.).
The text was updated successfully, but these errors were encountered:
mypy static checks source code for type (annotation) violations. The ouput is pretty similar to other tools, e.g.:
Would be nice to control
mypy
throughprospector
as well (to get pylint-compatible output etc.).The text was updated successfully, but these errors were encountered: