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

15 lines
191 B
Python

import typing
from typing import final
@typing.final
class Class:
"""docstring"""
@final
def meth1(self):
"""docstring"""
def meth2(self):
"""docstring"""