mirror of
https://github.com/home-assistant/core.git
synced 2025-07-24 21:57:51 +00:00
Remove rstrip from ecobee binary_sensor __init__ (#118062)
This commit is contained in:
parent
225e90c99e
commit
901317ec39
@ -42,7 +42,7 @@ class EcobeeBinarySensor(BinarySensorEntity):
|
|||||||
def __init__(self, data, sensor_name, sensor_index):
|
def __init__(self, data, sensor_name, sensor_index):
|
||||||
"""Initialize the Ecobee sensor."""
|
"""Initialize the Ecobee sensor."""
|
||||||
self.data = data
|
self.data = data
|
||||||
self.sensor_name = sensor_name.rstrip()
|
self.sensor_name = sensor_name
|
||||||
self.index = sensor_index
|
self.index = sensor_index
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
Loading…
x
Reference in New Issue
Block a user