summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-ext-autodoc/target/cached_property.py
blob: 63ec09f8eee8cf0ea0658077e2c3aa942e94c92a (plain)
1
2
3
4
5
6
7
from functools import cached_property


class Foo:
    @cached_property
    def prop(self) -> int:
        return 1