As per swagger's doc, operationId is an optional parameter:
operationId is an optional unique string used to identify an operation. If provided, these IDs must be unique among all operations described in your API.
Therefore, the following line should use a .get("operationId"):
https://github.com/triaxtec/openapi-python-client/blob/7ef8b93931a33829de2e272f530ac379fc976670/openapi_python_client/openapi_parser/openapi.py#L146
As per swagger's doc, operationId is an optional parameter:
Therefore, the following line should use a
.get("operationId"):https://github.com/triaxtec/openapi-python-client/blob/7ef8b93931a33829de2e272f530ac379fc976670/openapi_python_client/openapi_parser/openapi.py#L146