File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed
homeassistant/components/bang_olufsen Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -68,20 +68,20 @@ class BangOlufsenModel(StrEnum):
6868class WebsocketNotification (StrEnum ):
6969 """Enum for WebSocket notification types."""
7070
71- PLAYBACK_ERROR : Final [ str ] = "playback_error"
72- PLAYBACK_METADATA : Final [ str ] = "playback_metadata"
73- PLAYBACK_PROGRESS : Final [ str ] = "playback_progress"
74- PLAYBACK_SOURCE : Final [ str ] = "playback_source"
75- PLAYBACK_STATE : Final [ str ] = "playback_state"
76- SOFTWARE_UPDATE_STATE : Final [ str ] = "software_update_state"
77- SOURCE_CHANGE : Final [ str ] = "source_change"
78- VOLUME : Final [ str ] = "volume"
71+ PLAYBACK_ERROR = "playback_error"
72+ PLAYBACK_METADATA = "playback_metadata"
73+ PLAYBACK_PROGRESS = "playback_progress"
74+ PLAYBACK_SOURCE = "playback_source"
75+ PLAYBACK_STATE = "playback_state"
76+ SOFTWARE_UPDATE_STATE = "software_update_state"
77+ SOURCE_CHANGE = "source_change"
78+ VOLUME = "volume"
7979
8080 # Sub-notifications
81- NOTIFICATION : Final [ str ] = "notification"
82- REMOTE_MENU_CHANGED : Final [ str ] = "remoteMenuChanged"
81+ NOTIFICATION = "notification"
82+ REMOTE_MENU_CHANGED = "remoteMenuChanged"
8383
84- ALL : Final [ str ] = "all"
84+ ALL = "all"
8585
8686
8787DOMAIN : Final [str ] = "bang_olufsen"
You can’t perform that action at this time.
0 commit comments