Update volvooncall, add hybrid plug status (#58919)

This commit is contained in:
Jonathan Keslin 2021-12-03 11:07:03 -08:00 committed by GitHub
parent 88b93546f3
commit c915aa1493
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 23 additions and 10 deletions

View file

@ -11,9 +11,9 @@ async def async_setup_scanner(hass, config, async_see, discovery_info=None):
if discovery_info is None:
return
vin, component, attr = discovery_info
vin, component, attr, slug_attr = discovery_info
data = hass.data[DATA_KEY]
instrument = data.instrument(vin, component, attr)
instrument = data.instrument(vin, component, attr, slug_attr)
async def see_vehicle():
"""Handle the reporting of the vehicle position."""