Fix additional IQVIA data bug (#23931)

pull/23933/head
Aaron Bach 2019-05-16 18:30:09 -06:00 committed by GitHub
parent 03a0a3572b
commit 1b5f526e09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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']]