Fix ThreeWayHandle sensor in Overkiz integration (#86953)

Fix typo in sensor.py

Fixes https://github.com/home-assistant/core/issues/85913
This commit is contained in:
Mick Vleeshouwer 2023-01-30 16:15:53 +01:00 committed by GitHub
parent 73cd03255f
commit 98a79dd5a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -386,7 +386,7 @@ SENSOR_DESCRIPTIONS: list[OverkizSensorDescription] = [
key=OverkizState.CORE_THREE_WAY_HANDLE_DIRECTION, key=OverkizState.CORE_THREE_WAY_HANDLE_DIRECTION,
name="Three way handle direction", name="Three way handle direction",
device_class=SensorDeviceClass.ENUM, device_class=SensorDeviceClass.ENUM,
options=["open", "tilt", "close"], options=["open", "tilt", "closed"],
translation_key="three_way_handle_direction", translation_key="three_way_handle_direction",
), ),
] ]