(self, session)
| 227 | return data |
| 228 | |
| 229 | def get_first_action(self, session) -> Action: |
| 230 | action = session.query(Action).filter( |
| 231 | Action.workflow_id == self.id, |
| 232 | Action.ordinal == 0, |
| 233 | Action.archived == False).first() |
| 234 | return action |
| 235 | |
| 236 | |
| 237 | # 'abcdefghijklmnopqrstuvwxyz0123456789' |
no outgoing calls
no test coverage detected