Disallow dynamic typing Disallow dynamic typing The Any type is used represent a value that has a dynamic type .The —disallow-any family of flags will disallow various uses o...
Developer Information Type Annotations Mailing Lists IRC libcloud on Freenode Issue Tracker Testing Continuous Integration Test Coverage Developer Information Type An...
Check types in assignment statement [assignment] Check types in assignment statement [assignment] Mypy checks that the assigned expression is compatible with theassignment targ...
Metaclasses Metaclasses A metaclass is a class that describesthe construction and behavior of other classes, similarly to how classesdescribe the construction and behavior of ...
Check TypedDict items [typeddict-item] Check TypedDict items [typeddict-item] When constructing a TypedDict object, mypy checks that each key and value is compatiblewith the T...
Check calls to overloaded functions [call-overload] Check calls to overloaded functions [call-overload] When you call an overloaded function, mypy checks that at least one ofth...
ORM Extensions ORM Extensions SQLAlchemy has a variety of ORM extensions available, which add additional functionality to the core behavior. The extensions build almost entirel...
Report syntax errors [syntax] Report syntax errors [syntax] If the code being checked is not syntactically valid, mypy issues asyntax error. Most, but not all, syntax errors ar...
Check argument types [arg-type] Check argument types [arg-type] Mypy checks that argument types in a call match the declared argumenttypes in the signature of the called functi...