mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Changed returned attribute from "Game" to "game" (#9945)
I noticed the steam component "game" attribute is capitalized. This should be lowercase if I'm not mistaken. From: return {'Game': self._game} To: return {'game': self._game} Not sure if i'm doing this correctly... apologizes if I'm not!
This commit is contained in:
parent
8a93cc147a
commit
1e1d593ef7
@ -96,7 +96,7 @@ class SteamSensor(Entity):
|
|||||||
@property
|
@property
|
||||||
def device_state_attributes(self):
|
def device_state_attributes(self):
|
||||||
"""Return the state attributes."""
|
"""Return the state attributes."""
|
||||||
return {'Game': self._game}
|
return {'game': self._game}
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def entity_picture(self):
|
def entity_picture(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user