Switched to async_fire (#17472)

pull/17483/head
Julius Mittenzwei 2018-10-15 12:16:40 +02:00 committed by Paulus Schoutsen
parent e985f30247
commit 373e3b12d8
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ class KNXModule:
async def telegram_received_cb(self, telegram):
"""Call invoked after a KNX telegram was received."""
self.hass.bus.fire('knx_event', {
self.hass.bus.async_fire('knx_event', {
'address': str(telegram.group_address),
'data': telegram.payload.value
})