forked from home-assistant/core
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:
@@ -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):
|
||||||
|
Reference in New Issue
Block a user