Files
fastapi_tutor_yb/debug/syntax_app/annotated_app.py
T

7 lines
157 B
Python

from typing import Annotated
def say_hello(name: Annotated[str, "this is just metadata"]) -> str:
return f"Hello {name}"
print(say_hello('Annotated'))