From 7872e6caf8bac40c8ccb293020f7367d56f48139 Mon Sep 17 00:00:00 2001 From: TimothyLeeAdams Date: Wed, 13 Jan 2021 12:59:57 -0500 Subject: [PATCH] Change attribute key for Lutron cover to lutron_integration_id (#45114) Currently, covers return "Lutron Integration ID" as a state attribute. This is inconsistent with the light, switch, and binary_sensor which return "lutron_integration_id". --- homeassistant/components/lutron/cover.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/lutron/cover.py b/homeassistant/components/lutron/cover.py index 1ec7c07aac0..f1faed32161 100644 --- a/homeassistant/components/lutron/cover.py +++ b/homeassistant/components/lutron/cover.py @@ -66,4 +66,4 @@ class LutronCover(LutronDevice, CoverEntity): @property def device_state_attributes(self): """Return the state attributes.""" - return {"Lutron Integration ID": self._lutron_device.id} + return {"lutron_integration_id": self._lutron_device.id}