With mypy 0.990 type promotions was changed. Before ```py class Foo: a: complex isinstance(Foo().a, int) # fine ``` After ```py class Foo: a: complex isinstance(Foo().a, int) # fails class Foo: a: complex | float | int # raises Y041 isinstance(Foo().a, int) # fine ``` Not sure what to do with this check, but just raining attention. See https://github.com/python/mypy/issues/14030 and https://github.com/python/typeshed/pull/9130