(cls, state)
| 549 | |
| 550 | @classmethod |
| 551 | def to_model(cls, state): |
| 552 | execution_id = state.execution_id |
| 553 | query_module = state.query_module |
| 554 | query_context = state.query_context |
| 555 | |
| 556 | model = cls.model( |
| 557 | execution_id=execution_id, |
| 558 | query_module=query_module, |
| 559 | query_context=query_context, |
| 560 | ) |
| 561 | return model |
| 562 | |
| 563 | |
| 564 | class ActionAliasAPI(BaseAPI, APIUIDMixin): |
nothing calls this directly
no outgoing calls
no test coverage detected