Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docs/dev_101_services.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,8 @@ SEARCH_ITEMS_SCHEMA = vol.Schema({
})


async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Set up the platform."""
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
"""Set up the integration."""

async def search_items(call: ServiceCall) -> ServiceResponse:
"""Search in the date range and return the matching items."""
Expand Down