Fix incorrect pyairvisual call (#21542)
This commit is contained in:
parent
81dd2acf3b
commit
8ebe5c61e8
1 changed files with 2 additions and 2 deletions
|
@ -278,11 +278,11 @@ class AirVisualData:
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if self.city and self.state and self.country:
|
if self.city and self.state and self.country:
|
||||||
resp = await self._client.data.city(
|
resp = await self._client.api.city(
|
||||||
self.city, self.state, self.country)
|
self.city, self.state, self.country)
|
||||||
self.longitude, self.latitude = resp['location']['coordinates']
|
self.longitude, self.latitude = resp['location']['coordinates']
|
||||||
else:
|
else:
|
||||||
resp = await self._client.data.nearest_city(
|
resp = await self._client.api.nearest_city(
|
||||||
self.latitude, self.longitude)
|
self.latitude, self.longitude)
|
||||||
|
|
||||||
_LOGGER.debug("New data retrieved: %s", resp)
|
_LOGGER.debug("New data retrieved: %s", resp)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue