summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-ext-autodoc/target/annotated.py
blob: 42718825668243f3ab0ae5a7dc62a1e7b0801441 (plain)
1
2
3
4
5
6
from typing import Annotated


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