Bumped ghlocalapi to 0.1.0 (#18584)

* mumped ghlocalapi to 0.1.0

* update requirement_all.txt
This commit is contained in:
Eliseo Martelli 2018-11-19 21:01:26 +01:00 committed by Charles Garwood
parent 14ad7428ea
commit 57f7e7eedc
2 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@ from homeassistant.components.device_tracker import (
DOMAIN, PLATFORM_SCHEMA, DeviceScanner)
from homeassistant.const import CONF_HOST
REQUIREMENTS = ['ghlocalapi==0.0.1']
REQUIREMENTS = ['ghlocalapi==0.1.0']
_LOGGER = logging.getLogger(__name__)
@ -40,7 +40,7 @@ class GoogleHomeDeviceScanner(DeviceScanner):
def __init__(self, hass, config):
"""Initialize the scanner."""
from ghlocalapi.device_info import DeviceInfo
from ghlocalapi.bluetooth import BluetoothScan
from ghlocalapi.bluetooth import Bluetooth
self.last_results = {}
@ -50,7 +50,7 @@ class GoogleHomeDeviceScanner(DeviceScanner):
session = async_get_clientsession(hass)
self.deviceinfo = DeviceInfo(hass.loop, session, self._host)
self.scanner = BluetoothScan(hass.loop, session, self._host)
self.scanner = Bluetooth(hass.loop, session, self._host)
async def async_connect(self):
"""Initialize connection to Google Home."""

View File

@ -422,7 +422,7 @@ geojson_client==0.3
georss_client==0.4
# homeassistant.components.device_tracker.googlehome
ghlocalapi==0.0.1
ghlocalapi==0.1.0
# homeassistant.components.sensor.gitter
gitterpy==0.1.7