# Pastebin Q8F84pkT You might be able to do something like: ``` def _run(self, call): old = asyncio.get_event_loop() asyncio.set_event_loop(self.loop) # for 3.6 ret = self.loop.run_until_complete(call) asyncio.set_event_loop(old) return ret