diff options
Diffstat (limited to 'tests/roots/test-ext-autodoc/target/annotated.py')
-rw-r--r-- | tests/roots/test-ext-autodoc/target/annotated.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/roots/test-ext-autodoc/target/annotated.py b/tests/roots/test-ext-autodoc/target/annotated.py new file mode 100644 index 000000000..427188256 --- /dev/null +++ b/tests/roots/test-ext-autodoc/target/annotated.py @@ -0,0 +1,6 @@ +from typing import Annotated + + +def hello(name: Annotated[str, "attribute"]) -> None: + """docstring""" + pass |