from typing import Optional class OpenAPIFirstError(Exception): ... class MissingOperationHandler(OpenAPIFirstError): def __init__(self, *, path: str, method: str, operation_id: Optional[str] = ...) -> None: ...