From fe4212d185001a283a9ed87fbd3a9a47a2f9e1a5 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sat, 8 Jul 2023 21:07:24 +0100 Subject: [PATCH] rename function --- __main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__main__.py b/__main__.py index 63b7224..c79e8fc 100644 --- a/__main__.py +++ b/__main__.py @@ -38,7 +38,7 @@ def register_hotkeys(duckypad): keyboard.add_hotkey("ctrl+alt+F17", duckypad.obsws.toggle_mute_mic) keyboard.add_hotkey("ctrl+alt+F18", duckypad.obsws.toggle_stream) - def streamlabs_hotkeys(): + def streamlabs_controller_hotkeys(): keyboard.add_hotkey("ctrl+F22", duckypad.streamlabs_controller.begin_stream) keyboard.add_hotkey("ctrl+F23", duckypad.streamlabs_controller.end_stream) keyboard.add_hotkey( @@ -54,7 +54,7 @@ def register_hotkeys(duckypad): for step in ( audio_hotkeys, scene_hotkeys, - streamlabs_hotkeys, + streamlabs_controller_hotkeys, obsws_hotkeys, duckypad_hotkeys, )