Make sure entity config is never none (#24801)

This commit is contained in:
Paulus Schoutsen 2019-06-27 12:17:42 -07:00
parent 1f5e2fa3ce
commit e39f0f3e25

View file

@ -37,7 +37,7 @@ class GoogleConfig(AbstractConfig):
@property
def entity_config(self):
"""Return entity config."""
return self._config.get(CONF_ENTITY_CONFIG, {})
return self._config.get(CONF_ENTITY_CONFIG) or {}
@property
def secure_devices_pin(self):