Type in annotated function



examples/python-types-at-pyweb-2025-05/annotated_function.py
def do_something() -> None:
    answer: str = 42
    print(answer)


do_something()