Skip to content

Commit

Permalink
[bug fix] change entity naming
Browse files Browse the repository at this point in the history
  • Loading branch information
hugobloem authored Aug 24, 2023
1 parent 49513c0 commit f77cc97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/stateful_scenes/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __init__(self, scene) -> None:
"""Initialize an AwesomeLight."""
self._scene = scene
self._is_on = None
self._name = scene.name + " Stateful Scene"
self._name = "Stateful Scene " + scene.name
self._attr_unique_id = "stateful_" + scene.id

@property
Expand Down

0 comments on commit f77cc97

Please sign in to comment.