@@ -203,17 +203,28 @@ def select_controller_path(self, controller_path: Optional[Path]) -> None:
203
203
else None
204
204
)
205
205
206
+ def create_selected_ports_dict (self ) -> dict [str , str ]:
207
+ selected_ports_dict = {}
208
+ if self .selected_midi_in is not None :
209
+ selected_ports_dict ["in" ] = self .selected_midi_in
210
+
211
+ if self .selected_midi_out is not None :
212
+ selected_ports_dict ["out" ] = self .selected_midi_out
213
+ return selected_ports_dict
214
+
206
215
def select_midi_in (self , port_name : Optional [str ]) -> None :
207
216
"""Updates currently selected MIDI input port name.
208
217
209
218
Does not have any immediate effect except updating the value.
210
219
"""
211
220
self .selected_midi_in = port_name
212
221
if self .selected_controller :
213
- self .recent_midi_ports_for_controller [self .selected_controller .path ] = {
214
- "in" : self .selected_midi_in ,
215
- "out" : self .selected_midi_out ,
216
- }
222
+ selected_ports_dict = self .create_selected_ports_dict ()
223
+
224
+ if selected_ports_dict :
225
+ self .recent_midi_ports_for_controller [self .selected_controller .path ] = (
226
+ selected_ports_dict
227
+ )
217
228
218
229
def select_midi_out (self , port_name : Optional [str ]) -> None :
219
230
"""Updates currently selected MIDI output port name.
@@ -222,10 +233,12 @@ def select_midi_out(self, port_name: Optional[str]) -> None:
222
233
"""
223
234
self .selected_midi_out = port_name
224
235
if self .selected_controller :
225
- self .recent_midi_ports_for_controller [self .selected_controller .path ] = {
226
- "in" : self .selected_midi_in ,
227
- "out" : self .selected_midi_out ,
228
- }
236
+ selected_ports_dict = self .create_selected_ports_dict ()
237
+
238
+ if selected_ports_dict :
239
+ self .recent_midi_ports_for_controller [self .selected_controller .path ] = (
240
+ selected_ports_dict
241
+ )
229
242
230
243
def stop_handling (self ) -> None :
231
244
"""Stops handling any MIDI signals."""
0 commit comments