from pathlib import Path from typing import Any, Dict, Union from .errors import OpenAPIFirstError class OpenAPISpecLoadError(OpenAPIFirstError): ... def load_openapi(path: Union[str, Path]) -> Dict[str, Any]: ...