From 243c7cae372b6bfdb53cdc53bcbbc64cc3f07d12 Mon Sep 17 00:00:00 2001 From: Cheong Yip Date: Tue, 24 Jul 2018 09:58:02 +1000 Subject: [PATCH] Fix typo `asayn_init` instead of `async_init` --- homeassistant/components/device_tracker/tile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/device_tracker/tile.py b/homeassistant/components/device_tracker/tile.py index 526c1a4b47b64c..07f15e7e88ad26 100644 --- a/homeassistant/components/device_tracker/tile.py +++ b/homeassistant/components/device_tracker/tile.py @@ -109,7 +109,7 @@ async def _async_update(self, now=None): _LOGGER.debug('Updating Tile data') try: - await self._client.asayn_init() + await self._client.async_init() tiles = await self._client.tiles.all( whitelist=self._types, show_inactive=self._show_inactive) except SessionExpiredError: