``` python class Foo(object): @property @some_decorator def foo(self): ... ``` is valid in Python 2, but MyPy complains `Decorated property not supported`. Adding `type: ignore` does not ignore the error.
is valid in Python 2, but MyPy complains
Decorated property not supported.Adding
type: ignoredoes not ignore the error.