mixer.py: remove double arg

This commit is contained in:
coon 2025-09-24 23:06:28 +02:00
parent 927e2513e3
commit 20f90018c0

View file

@ -157,7 +157,7 @@ class Mixer:
self.sock.sendall(msg_bytes) self.sock.sendall(msg_bytes)
def scene_recall(self, scene_id): def scene_recall(self, scene_id):
print(f"scene_recall: scene_id={scene_id}", scene_id) print(f"scene_recall: scene_id={scene_id}")
self.set_bank_1() self.set_bank_1()
msb = mido.Message("program_change", channel=0, program=scene_id) msb = mido.Message("program_change", channel=0, program=scene_id)