(service: CommandService)
| 44 | |
| 45 | |
| 46 | async def _list_command_conflicts(service: CommandService): |
| 47 | try: |
| 48 | return ok(await service.list_conflicts()) |
| 49 | except CommandServiceError as exc: |
| 50 | _raise_command_error(exc) |
| 51 | |
| 52 | |
| 53 | async def _toggle_command(payload: CommandToggleRequest, service: CommandService): |
no test coverage detected