From 15303fd32dde3829338b9e747ba9faa593402b9e Mon Sep 17 00:00:00 2001 From: Ellis Percival Date: Sat, 26 Mar 2016 16:42:53 +0000 Subject: [PATCH] Remove unnecessary dependency from TCP binary sensor for #1617 --- homeassistant/components/binary_sensor/tcp.py | 1 - 1 file changed, 1 deletion(-) diff --git a/homeassistant/components/binary_sensor/tcp.py b/homeassistant/components/binary_sensor/tcp.py index 4048c884df6..6c00fea8f94 100644 --- a/homeassistant/components/binary_sensor/tcp.py +++ b/homeassistant/components/binary_sensor/tcp.py @@ -9,7 +9,6 @@ import logging from homeassistant.components.binary_sensor import BinarySensorDevice from homeassistant.components.sensor.tcp import Sensor, DOMAIN, CONF_VALUE_ON -DEPENDENCIES = [DOMAIN] _LOGGER = logging.getLogger(__name__)