(self, direction, data)
| 223 | pass |
| 224 | |
| 225 | def sendCommsData(self, direction, data): |
| 226 | self._emit('commsData', { |
| 227 | 'direction': direction, |
| 228 | 'data': data |
| 229 | }) |
| 230 | |
| 231 | def sendEvent(self, type, payload=None): |
| 232 | self._emit("event", {"type": type, "payload": payload}) |
no test coverage detected