7 lines
200 B
Python
7 lines
200 B
Python
class OpenAPIFirstError(Exception): ...
|
|
|
|
class MissingOperationHandler(OpenAPIFirstError):
|
|
def __init__(
|
|
self, *, path: str, method: str, operation_id: str | None = ...
|
|
) -> None: ...
|