blob: 018f51ee45e7ab4da5d17c732b38caac161ca8ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
class Foo:
"""docstring"""
@property
def prop1(self) -> int:
"""docstring"""
@classmethod
@property
def prop2(self) -> int:
"""docstring"""
@property
def prop1_with_type_comment(self):
# type: () -> int
"""docstring"""
@classmethod
@property
def prop2_with_type_comment(self):
# type: () -> int
"""docstring"""
|