1
mirror of https://github.com/home-assistant/core synced 2024-09-09 12:51:22 +02:00

Fix upc lint error (#5554)

This commit is contained in:
Pascal Vizeli 2017-01-25 18:46:37 +01:00 committed by GitHub
parent 42d33ae26d
commit c3a55e7d82
2 changed files with 1 additions and 3 deletions

View File

@ -77,7 +77,7 @@ class UPCDeviceScanner(DeviceScanner):
finally:
self.websession.detach()
hass.buss.async_listen_once(
hass.bus.async_listen_once(
EVENT_HOMEASSISTANT_STOP, async_logout)
@asyncio.coroutine

View File

@ -17,8 +17,6 @@ class AiohttpClientMocker:
self._cookies = {}
self.mock_calls = []
self.cookie_jar = mock.MagicMock()
def request(self, method, url, *,
auth=None,
status=200,