Beta-1.0.1:

- added a function to go back to previous song
This commit is contained in:
janis
2022-03-11 19:19:20 +01:00
parent 92350fc5aa
commit f1f3d5461c
5 changed files with 93 additions and 32 deletions

View File

@@ -26,7 +26,12 @@ class InfoHandler:
try:
self.__style = self.__infos.pop(0)
self.__outp1 += f" | {self.__style}"
except:
except IndexError:
pass
try:
self.__tempo = self.__infos.pop(0)
self.__outp1 += f" ({self.__tempo})"
except IndexError:
pass
self.__output.append(self.__outp1)
cvw.app_str("./data/songtemp.csv", self.__output)