From 53b1d1669ffca28296751df2286c1e15929ed11b Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 7 Mar 2019 10:38:09 -0800 Subject: [PATCH] Update config_entries_index.md --- docs/config_entries_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config_entries_index.md b/docs/config_entries_index.md index 1683ce1b..804ee228 100644 --- a/docs/config_entries_index.md +++ b/docs/config_entries_index.md @@ -129,6 +129,6 @@ If you need to clean up resources used for an entity, implement the `async_will_ If a component needs to clean up code when an entry is removed, it can define a removal method: ```python -def async_remove_entry(hass, entry) -> None: +async def async_remove_entry(hass, entry) -> None: """Handle removal of an entry.""" ```