This commit is contained in:
onyx-and-iris 2023-07-08 21:10:04 +01:00
parent fe4212d185
commit 1d6733002b

View File

@ -49,16 +49,14 @@ def register_hotkeys(duckypad):
def duckypad_hotkeys(): def duckypad_hotkeys():
keyboard.add_hotkey("ctrl+F21", duckypad.reset) keyboard.add_hotkey("ctrl+F21", duckypad.reset)
[ steps = (
step() audio_hotkeys,
for step in ( scene_hotkeys,
audio_hotkeys, streamlabs_controller_hotkeys,
scene_hotkeys, obsws_hotkeys,
streamlabs_controller_hotkeys, duckypad_hotkeys,
obsws_hotkeys, )
duckypad_hotkeys, [step() for step in steps]
)
]
def main(): def main():