Skip to content

Commit

Permalink
Fix a lint error
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Sep 28, 2024
1 parent 324d412 commit 31eb22a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions mod/host.py
Original file line number Diff line number Diff line change
Expand Up @@ -3490,10 +3490,11 @@ def load(self, bundlepath, isDefault=False, abort_catcher=None):
p.split(":",1)[-1]) for p in get_jack_hardware_ports(False, True))

else:
mappedOldMidiIns = {}
mappedOldMidiOuts = {}
mappedNewMidiIns = {}
mappedNewMidiOuts = {}
mappedOldMidiIns = {}
mappedOldMidiOuts = {}
mappedOldMidiOuts2 = {}
mappedNewMidiIns = {}
mappedNewMidiOuts = {}

curmidisymbols = []
for port_symbol, port_alias, _ in self.midiports:
Expand Down

0 comments on commit 31eb22a

Please sign in to comment.