sphinx/tests/roots/test-ext-autodoc/target/cached_property.py

13 lines
219 B
Python

from functools import cached_property
class Foo:
@cached_property
def prop(self) -> int:
return 1
@cached_property
def prop_with_type_comment(self):
# type: () -> int
return 1