summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-ext-autodoc/target/final.py
blob: ff78442e7c239a4daabfb1b709a57be9b09a0445 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import typing
from typing import final


@typing.final
class Class:
    """docstring"""

    @final
    def meth1(self):
        """docstring"""

    def meth2(self):
        """docstring"""