(uri)
| 81 | from marimapper.backends.fadecandy import opc |
| 82 | |
| 83 | def get_client_patch(uri): |
| 84 | class ClientPatch: |
| 85 | def put_pixels(self, _): |
| 86 | pass |
| 87 | |
| 88 | return ClientPatch() |
| 89 | |
| 90 | monkeypatch.setattr(opc, "Client", get_client_patch) |
| 91 |
nothing calls this directly
no test coverage detected