summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-ext-autodoc/target/annotated.py
blob: 5b87518f96841ea9c427ce725f0f009f36d05b86 (plain)
1
2
3
4
5
6
7
8
from __future__ import annotations

from typing import Annotated


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