1 2 3 4 5 6
from typing import Annotated def hello(name: Annotated[str, "attribute"]) -> None: """docstring""" pass