Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
from functools import cached_property
class Foo:
@cached_property
def prop(self) -> int:
return 1
def prop_with_type_comment(self):
# type: () -> int