"""Utility functions and common types."""# Import fixtures directly without going through other modulesfrom.fixturesimport(create_function_schema,create_method_schema,create_option_schema,)# Export all public functions__all__=["create_function_schema","create_method_schema","create_option_schema",]fromtypingimportAny
[docs]def__getattr__(name:str)->Any:"""Lazy import for backward compatibility."""ifname=="schema_to_rst":from..generators.rst_generatorimportschema_to_rstreturnschema_to_rstraiseAttributeError(f"module '{__name__}' has no attribute '{name}'")