markusschloesser / MackieC4_P3

A Mackie C4 Midi Remote Script for Ableton 11
16 stars 2 forks source link

Vulture - find unused code output #107

Closed markusschloesser closed 8 months ago

markusschloesser commented 1 year ago

Installed Vulture (https://pypi.org/project/vulture/) and ran it, output is: C:\Users\Markus>vulture C:\Users\Markus\PycharmProjects\C4P3\wip\MackieC4 PycharmProjects\C4P3\wip\MackieC4__init.py:9: unused function 'create_instance' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:31: unused variable 'PAT_STATUS' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:33: unused variable 'PGM_CHG_STATUS' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:34: unused variable 'CAT_STATUS' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:35: unused variable 'PB_STATUS' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:36: unused variable 'SYSEX_STATUS' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:37: unused variable 'SYSEX_END_OF' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:38: unused variable 'MIDI_DATA_START_OFFSET' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:40: unused variable 'MIDI_CONTROL_START_OFFSET' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:87: unused variable 'LCD_DISPLAY_INDEX' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:95: unused variable 'NUM_TEXT_BYTES_PER_SYSEX_MSG' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:96: unused variable 'NUM_TOTAL_BYTES_PER_SYSEX_MSG' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:99: unused variable 'ASCII_SPACE' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:100: unused variable 'ASCII_DASH' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:101: unused variable 'ASCII_PIPE' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:106: unused variable 'BUTTON_STATE_BLINKING' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:107: unused variable 'BUTTON_PRESSED' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:108: unused variable 'BUTTON_RELEASED' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:109: unused variable 'FID_PANNING_BASE' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:172: unused variable 'VPOT_DISPLAY_HEX_CONVERT' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:181: unused variable 'encoder_ring_led_mode_values' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:199: unused variable 'LED_ON_DATA' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:200: unused variable 'LED_OFF_DATA' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:202: unused variable 'CLIP_STATE_INVALID' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:203: unused variable 'CLIP_STOPPED' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:204: unused variable 'CLIP_TRIGGERED' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:205: unused variable 'CLIP_PLAYING' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:282: unused variable 'C4SID_CONTROL' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:285: unused variable 'C4SID_OPTION' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:311: unused variable 'C4SID_VPOT_PUSH_2' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:312: unused variable 'C4SID_VPOT_PUSH_3' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:313: unused variable 'C4SID_VPOT_PUSH_4' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:314: unused variable 'C4SID_VPOT_PUSH_5' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:315: unused variable 'C4SID_VPOT_PUSH_6' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:316: unused variable 'C4SID_VPOT_PUSH_7' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:317: unused variable 'C4SID_VPOT_PUSH_8' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:318: unused variable 'C4SID_VPOT_PUSH_9' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:319: unused variable 'C4SID_VPOT_PUSH_10' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:320: unused variable 'C4SID_VPOT_PUSH_11' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:321: unused variable 'C4SID_VPOT_PUSH_12' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:322: unused variable 'C4SID_VPOT_PUSH_13' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:323: unused variable 'C4SID_VPOT_PUSH_14' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:324: unused variable 'C4SID_VPOT_PUSH_15' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:325: unused variable 'C4SID_VPOT_PUSH_16' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:326: unused variable 'C4SID_VPOT_PUSH_17' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:327: unused variable 'C4SID_VPOT_PUSH_18' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:328: unused variable 'C4SID_VPOT_PUSH_19' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:329: unused variable 'C4SID_VPOT_PUSH_20' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:330: unused variable 'C4SID_VPOT_PUSH_21' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:331: unused variable 'C4SID_VPOT_PUSH_22' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:332: unused variable 'C4SID_VPOT_PUSH_23' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:333: unused variable 'C4SID_VPOT_PUSH_24' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:334: unused variable 'C4SID_VPOT_PUSH_25' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:335: unused variable 'C4SID_VPOT_PUSH_26' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:336: unused variable 'C4SID_VPOT_PUSH_27' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:337: unused variable 'C4SID_VPOT_PUSH_28' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:338: unused variable 'C4SID_VPOT_PUSH_29' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:339: unused variable 'C4SID_VPOT_PUSH_30' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:340: unused variable 'C4SID_VPOT_PUSH_31' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:366: unused variable 'C4SID_VPOT_CC_ADDRESS_2' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:367: unused variable 'C4SID_VPOT_CC_ADDRESS_3' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:368: unused variable 'C4SID_VPOT_CC_ADDRESS_4' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:369: unused variable 'C4SID_VPOT_CC_ADDRESS_5' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:370: unused variable 'C4SID_VPOT_CC_ADDRESS_6' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:371: unused variable 'C4SID_VPOT_CC_ADDRESS_7' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:372: unused variable 'C4SID_VPOT_CC_ADDRESS_8' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:373: unused variable 'C4SID_VPOT_CC_ADDRESS_9' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:374: unused variable 'C4SID_VPOT_CC_ADDRESS_10' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:375: unused variable 'C4SID_VPOT_CC_ADDRESS_11' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:377: unused variable 'C4SID_VPOT_CC_ADDRESS_13' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:381: unused variable 'C4SID_VPOT_CC_ADDRESS_17' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:382: unused variable 'C4SID_VPOT_CC_ADDRESS_18' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:387: unused variable 'C4SID_VPOT_CC_ADDRESS_23' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:388: unused variable 'C4SID_VPOT_CC_ADDRESS_24' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:389: unused variable 'C4SID_VPOT_CC_ADDRESS_25' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:390: unused variable 'C4SID_VPOT_CC_ADDRESS_26' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:391: unused variable 'C4SID_VPOT_CC_ADDRESS_27' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:392: unused variable 'C4SID_VPOT_CC_ADDRESS_28' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:393: unused variable 'C4SID_VPOT_CC_ADDRESS_29' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:394: unused variable 'C4SID_VPOT_CC_ADDRESS_30' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:395: unused variable 'C4SID_VPOT_CC_ADDRESS_31' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:398: unused variable 'encoder_cc_ids' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:399: unused variable 'encoder_cw_values' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\consts.py:400: unused variable 'encoder_ccw_values' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderAssignmentHistory.py:31: unused attribute 'my_controlling_encoder' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderAssignmentHistory.py:36: unused attribute 't_r_count' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderAssignmentHistory.py:141: unused attribute 't_r_count' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderAssignmentHistory.py:276: unused variable 'old_selected_device_index' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:9: unused import 'itertools' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:60: unused attribute 'current_track_name' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:87: unused attribute 'returns_switch' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:275: unused variable 'listener_type' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:277: unused variable 'listener_type' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:279: unused variable 'listener_type' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:281: unused variable 'listener_type' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:354: unused method 'last_assignment_mode' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:552: unused variable 'old_selected_bank' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:917: unused method 'on_parameter_list_of_chosen_plugin_changed' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:957: unused variable 'count' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:977: unused variable 'count' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:979: unused variable 'for_display_only' (100% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:983: unused attribute 'current_track_name' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1003: unused variable 'encoder_13_index' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1009: unused variable 'encoder_21_index' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1011: unused variable 'encoder_24_index' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1096: unused variable 'format_nbr' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1098: unused variable 'format_nbr' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1116: unused attribute 'returns_switch' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1130: unused attribute 'returns_switch' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1239: unused variable 'dummy_param' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1283: unused variable 'dummy_param' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1289: unused variable 'dummy_param' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1295: unused variable 'dummy_param' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1643: unused variable 'encoder_20_index' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1644: unused variable 'encoder_21_index' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1879: unused variable 'offset' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderController.py:1882: unused variable 'offset' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderDisplaySegment.py:13: unused import 'listens' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderDisplaySegment.py:23: unused attribute 'within_destroy' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderDisplaySegment.py:25: unused attribute 'encoder' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderDisplaySegment.py:42: unused attribute 'encoder' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderDisplaySegment.py:58: unused method 'clear_text' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderDisplaySegment.py:62: unused method 'set_lower_text' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderDisplaySegment.py:65: unused method 'set_lower_text_and_alt' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderDisplaySegment.py:69: unused method 'set_upper_text' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\EncoderDisplaySegment.py:93: unused method 'alter_lower_text' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\Encoders.py:22: unused attribute 'within_destroy' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\Encoders.py:32: unused attribute 'v_pot_display_frame_count' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\Encoders.py:39: unused attribute 'within_destroy' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\Encoders.py:43: unused attribute 'within_destroy' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\Encoders.py:103: unused method 'show_vpot_ring_spread' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\Encoders.py:129: unused attribute 'cc_value_map' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\Encoders.py:130: unused attribute 'delay_in_ms' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\Encoders.py:148: unused method 'assigned_track' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\Encoders.py:165: unused method 'select_track' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:25: unused import 'listens' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:37: unused import 'object' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:40: unused import 'MidiRemoteScript' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:67: unused variable 'slisten' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:70: unused variable 'sslisten' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:72: unused variable 'pplisten' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:82: unused variable 'scenelisten' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:134: unused method 'connect_script_instances' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:134: unused variable 'instanciated_scripts' (100% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:141: unused method 'is_extension' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:156: unused method 'update_display' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:189: unused method 'receive_midi' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:312: unused method 'can_lock_to_devices' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:318: unused method 'suggest_input_port' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:322: unused method 'suggest_output_port' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:335: unused method 'set_option_is_pressed' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:338: unused method 'ctrl_is_pressed' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:341: unused method 'set_ctrl_is_pressed' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:347: unused method 'set_alt_is_pressed' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:373: unused method 'disconnect' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:388: unused method 'suggest_map_mode' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:727: unused variable 'val' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:728: unused variable 'types' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:735: unused variable 'val' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:740: unused variable 'val' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4.py:889: unused method 'get_logger' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4Component.py:7: unused import 'object' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4Component.py:11: unused import 'MidiRemoteScript' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4Component.py:42: unused method 'set_option_is_pressed' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4Component.py:48: unused method 'set_control_is_pressed' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4Component.py:49: unused attribute 'set_pressed' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4Component.py:54: unused method 'set_alt_is_pressed' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\MackieC4Component.py:55: unused attribute 'set_pressed' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\song_util.py:5: unused import 'compose' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\song_util.py:5: unused import 'find_if' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\song_util.py:10: unused import 'Component' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\TimeDisplay.py:14: unused attribute '_TimeDisplay__main_script' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\TimeDisplay.py:50: unused variable 'show_points' (100% confidence) PycharmProjects\C4P3\wip\MackieC4\TimeDisplay.py:52: unused variable 'char' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\track_util.py:5: unused import 'partial' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\track_util.py:11: unused import 'compose' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\track_util.py:11: unused import 'EventObject' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\track_util.py:11: unused import 'find_if' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\track_util.py:11: unused import 'flatten' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\track_util.py:11: unused import 'listenable_property' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\track_util.py:11: unused import 'listens' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\track_util.py:11: unused import 'listens_group' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\track_util.py:11: unused import 'nop' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\track_util.py:13: unused import 'Component' (90% confidence) PycharmProjects\C4P3\wip\MackieC4\track_util.py:81: unused function 'unarm_tracks' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\track_util.py:94: unused method 'toggle_track_fold' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\track_util.py:109: unused function 'find_parent_track' (60% confidence) PycharmProjects\C4P3\wip\MackieC4\track_util.py:160: unused function 'get_all_mixer_tracks' (60% confidence)

Lots need to stay in, and some is wrong, but I will look at it further and try to optimize the code.

markusschloesser commented 1 year ago

partially addressed in https://github.com/markusschloesser/MackieC4_P3/commit/2d25744b24123df3593f737f6bc041179682b794 and https://github.com/markusschloesser/MackieC4_P3/commit/7a6cc018d2a0a85a014825473afb53615fbfa93d