diff options
Diffstat (limited to 'tests/roots/test-ext-autodoc/target/final.py')
-rw-r--r-- | tests/roots/test-ext-autodoc/target/final.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/roots/test-ext-autodoc/target/final.py b/tests/roots/test-ext-autodoc/target/final.py new file mode 100644 index 0000000..a8c3860 --- /dev/null +++ b/tests/roots/test-ext-autodoc/target/final.py @@ -0,0 +1,16 @@ +from __future__ import annotations + +import typing +from typing import final + + +@typing.final +class Class: + """docstring""" + + @final + def meth1(self): + """docstring""" + + def meth2(self): + """docstring""" |