diff options
Diffstat (limited to '')
-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 0000000..4271882 --- /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 |