1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Fix additional IQVIA data bug (#23931)

This commit is contained in:
Aaron Bach
2019-05-16 18:30:09 -06:00
committed by GitHub
parent 03a0a3572b
commit 1b5f526e09

View File

@@ -106,8 +106,8 @@ class ForecastSensor(IQVIAEntity):
if not self._iqvia.data:
return
data = self._iqvia.data[self._type]['Location']
if not data.get('periods'):
data = self._iqvia.data[self._type].get('Location')
if not data or not data.get('periods'):
return
indices = [p['Index'] for p in data['periods']]