This code runs fine on my machine but not from within RustPython: ```python from typing import Any def query(func: Any): return func @query def hello_world() -> int: return 1_000 ``` When you remove the Any type hint the code executes fine in RustPython.