From fe074835f0ec339df35a0a4cb6ab63e9441b43c0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 15 Sep 2015 07:56:08 +0200 Subject: [PATCH] Fix pylint issue --- homeassistant/components/switch/command_switch.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/switch/command_switch.py b/homeassistant/components/switch/command_switch.py index 52baeebb476..3a1964ad4d0 100644 --- a/homeassistant/components/switch/command_switch.py +++ b/homeassistant/components/switch/command_switch.py @@ -36,9 +36,10 @@ For more details about this platform, please refer to the documentation at https://home-assistant.io/components/switch.command_switch.html """ import logging -from homeassistant.components.switch import SwitchDevice import subprocess +from homeassistant.components.switch import SwitchDevice + _LOGGER = logging.getLogger(__name__)