From 45c35ceb2b886df1f65a6d22e67314bece9ad2da Mon Sep 17 00:00:00 2001 From: Cheong Yip Date: Tue, 24 Jul 2018 12:19:01 +1000 Subject: [PATCH] Fix typo `asayn_init` instead of `async_init` (#15645) --- 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 526c1a4b47b..07f15e7e88a 100644 --- a/homeassistant/components/device_tracker/tile.py +++ b/homeassistant/components/device_tracker/tile.py @@ -109,7 +109,7 @@ class TileScanner: _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: