Reviewed-on: #1 Co-authored-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com> Co-committed-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com>
7 lines
218 B
Python
7 lines
218 B
Python
from typing import Optional
|
|
|
|
class OpenAPIFirstError(Exception): ...
|
|
|
|
class MissingOperationHandler(OpenAPIFirstError):
|
|
def __init__(self, *, path: str, method: str, operation_id: Optional[str] = ...) -> None: ...
|