(self, flow: flow.Flow)
| 58 | app.ClientConnection.broadcast_flow("flows/add", flow) |
| 59 | |
| 60 | def _sig_view_update(self, flow: flow.Flow) -> None: |
| 61 | app.ClientConnection.broadcast_flow("flows/update", flow) |
| 62 | |
| 63 | def _sig_view_remove(self, flow: flow.Flow, index: int) -> None: |
| 64 | app.ClientConnection.broadcast( |
nothing calls this directly
no test coverage detected