diff --git a/homeassistant/helpers/entity_component.py b/homeassistant/helpers/entity_component.py index 0bcebd8dcdb..43d6e435509 100644 --- a/homeassistant/helpers/entity_component.py +++ b/homeassistant/helpers/entity_component.py @@ -79,6 +79,9 @@ class EntityComponent(object): platform = prepare_setup_platform( self.hass, self.config, self.domain, platform_type) + if platform is None: + return + # Config > Platform > Component scan_interval = platform_config.get( CONF_SCAN_INTERVAL,