(self, data)
| 307 | pass |
| 308 | |
| 309 | def _sendCurrentDataCallbacks(self, data): |
| 310 | for callback in self._callbacks: |
| 311 | try: callback.sendCurrentData(copy.deepcopy(data)) |
| 312 | except: pass |
| 313 | |
| 314 | def _sendAddTemperatureCallbacks(self, data): |
| 315 | for callback in self._callbacks: |
nothing calls this directly
no test coverage detected