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

7 lines
114 B
Python

from typing import Annotated
def hello(name: Annotated[str, "attribute"]) -> None:
"""docstring"""
pass