MyPy should error if subclass is not compatible with its base class. ```python class A: x = None # type: int class B(A): x = None # type: str ```