Spaces:
Build error
Build error
File size: 367 Bytes
c29f1fd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """Compatibility helpers expected by validator-oriented scripts."""
from __future__ import annotations
def install_openenv_fastmcp_compat() -> None:
"""Install runtime shims when needed.
The current environment does not require any monkey-patching, so this is a
deliberate no-op kept for validator compatibility.
"""
return None
|