Files
sphinx/tests/roots/test-ext-autodoc/target/annotated.py
2020-03-03 00:14:24 +09:00

7 lines
114 B
Python

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