From aec320dc193b796c620c6e27b49b4719705b354c Mon Sep 17 00:00:00 2001 From: Gerard Date: Fri, 5 Oct 2018 07:48:40 +0200 Subject: [PATCH] Fix a typo (#17147) --- homeassistant/components/switch/volvooncall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/switch/volvooncall.py b/homeassistant/components/switch/volvooncall.py index 96091a725a1..42c753725ab 100644 --- a/homeassistant/components/switch/volvooncall.py +++ b/homeassistant/components/switch/volvooncall.py @@ -15,7 +15,7 @@ _LOGGER = logging.getLogger(__name__) def setup_platform(hass, config, add_entities, discovery_info=None): - """Set up Tellstick switches.""" + """Set up a Volvo switch.""" if discovery_info is None: return add_entities([VolvoSwitch(hass, *discovery_info)])