From 1c8f1796903d06786060c53b48f07733708853a1 Mon Sep 17 00:00:00 2001
From: Pascal Vizeli <pascal.vizeli@syshack.ch>
Date: Fri, 3 Nov 2017 15:32:35 +0100
Subject: [PATCH] Remove unused async flavor

---
 homeassistant/components/tellstick.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/homeassistant/components/tellstick.py b/homeassistant/components/tellstick.py
index 6ae96b88da7..8faf61e9364 100644
--- a/homeassistant/components/tellstick.py
+++ b/homeassistant/components/tellstick.py
@@ -58,12 +58,12 @@ def _discover(hass, config, component_name, found_tellcore_devices):
 def setup(hass, config):
     """Set up the Tellstick component."""
     from tellcore.constants import TELLSTICK_DIM
-    from tellcore.telldus import AsyncioCallbackDispatcher
+    from tellcore.telldus import QueuedCallbackDispatcher
     from tellcore.telldus import TelldusCore
 
     try:
         tellcore_lib = TelldusCore(
-            callback_dispatcher=AsyncioCallbackDispatcher(hass.loop))
+            callback_dispatcher=QueuedCallbackDispatcher())
     except OSError:
         _LOGGER.exception("Could not initialize Tellstick")
         return False