From 28ef56497416cfebbc0fa564206e6e388468e929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Per=20Osb=C3=A4ck?= Date: Sun, 5 Nov 2017 13:50:46 +0100 Subject: [PATCH] fix a import in test causing vs code to fail to discover (#10358) * fix a import in test causing vs code to fail to discover * Change style --- tests/components/media_player/test_monoprice.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/components/media_player/test_monoprice.py b/tests/components/media_player/test_monoprice.py index 439b272fd4a..2bcd02e69aa 100644 --- a/tests/components/media_player/test_monoprice.py +++ b/tests/components/media_player/test_monoprice.py @@ -9,7 +9,8 @@ from homeassistant.components.media_player import ( SUPPORT_VOLUME_SET, SUPPORT_VOLUME_STEP, SUPPORT_SELECT_SOURCE) from homeassistant.const import STATE_ON, STATE_OFF -from components.media_player.monoprice import MonopriceZone, PLATFORM_SCHEMA +from homeassistant.components.media_player.monoprice import ( + MonopriceZone, PLATFORM_SCHEMA) class MockState(object):