Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion homeassistant/components/default_config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
except ImportError:
av = None

from homeassistant.setup import async_setup_component

DOMAIN = 'default_config'


async def async_setup(hass, config):
"""Initialize default configuration."""
return True
if av is None:
return True

return await async_setup_component(hass, 'stream', config)
1 change: 0 additions & 1 deletion homeassistant/components/default_config/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"mobile_app",
"person",
"script",
"stream",
"sun",
"system_health",
"updater",
Expand Down