From f89e7153e26c9e1bab2bff0802db7a44870930f1 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Tue, 30 Mar 2021 08:32:38 +0200 Subject: [PATCH] Remove pylint unused-import (#871) --- docs/data_entry_flow_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data_entry_flow_index.md b/docs/data_entry_flow_index.md index 620aaf18..efe92713 100644 --- a/docs/data_entry_flow_index.md +++ b/docs/data_entry_flow_index.md @@ -301,7 +301,7 @@ Example configuration flow that includes two show progress tasks. ```python from homeassistant import config_entries -from .const import DOMAIN # pylint:disable=unused-import +from .const import DOMAIN class TestFlow(config_entries.ConfigFlow, domain=DOMAIN):