no longer sending event name to callback

update tests accordingly
This commit is contained in:
onyx-and-iris
2022-07-26 21:47:41 +01:00
parent 5532ecef03
commit 362ec22257
3 changed files with 12 additions and 13 deletions

View File

@@ -15,17 +15,19 @@ class Observer:
print(f"Registered events: {self._cl.callback.get()}")
def on_current_program_scene_changed(self, data):
"""The current program scene has changed."""
print(f"Switched to scene {data['sceneName']}")
def on_scene_created(self, event, data):
def on_scene_created(self, data):
"""A new scene has been created."""
print(f"{event}: {data}")
print(f"scene {data['sceneName']} has been created")
def on_input_mute_state_changed(self, event, data):
def on_input_mute_state_changed(self, data):
"""An input's mute state has changed."""
print(f"{event}: {data}")
print(f"{data['inputName']} mute toggled")
def on_exit_started(self):
def on_exit_started(self, data):
"""OBS has begun the shutdown process."""
print(f"OBS closing!")
self._cl.unsubscribe()