Fix an error that has broken the whole system

This commit is contained in:
janis
2022-02-28 18:11:01 +01:00
parent 78144117a4
commit c41973add4
2 changed files with 3 additions and 1 deletions

View File

@@ -65,13 +65,14 @@ class MidiManagement:
self.timing_exp = self.ext_shortened[self.pos:]
self.__output = self.note_ext
self.__output += self.note_decod_oct
self.__output += str(self.note_decod_oct)
self.__output += f":{self.timing_exp}"
self.__output_list.append(str(self.__output))
except:
pass
print(self.__output_list)
self.addToClipboard(str(self.__output_list))

View File

@@ -57,6 +57,7 @@ class TrackChooseScreen(MDScreen):
self.path = backend.csv_parsers.CsvRead().importing("./backend/temp.csv").pop(0)
self.path_transmit = self.path.pop(0)
backend.midi_management.MidiManagement().analyse_track(str(self.path_transmit), self.chosen_track)
print("go")
screen_manager.get_screen("Home").ids.infobox.text = "The command has been copied to the clipboard"
screen_manager.current = "Home"
screen_manager.transition.direction = "right"