diff options
Diffstat (limited to 'tests/roots/test-ext-autodoc/target/final.py')
-rw-r--r-- | tests/roots/test-ext-autodoc/target/final.py | 14 |
1 files changed, 14 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..ff78442 --- /dev/null +++ b/tests/roots/test-ext-autodoc/target/final.py @@ -0,0 +1,14 @@ +import typing +from typing import final + + +@typing.final +class Class: + """docstring""" + + @final + def meth1(self): + """docstring""" + + def meth2(self): + """docstring""" |