from typing import Any def process(data: Any) -> Any: result: Any = data return result def store(items: dict[str, Any]) -> None: pass