This commit is contained in:
Lukas Schulz 2020-12-20 14:20:06 +01:00
parent 8e98909651
commit 7f01c9ed47

View file

@ -53,7 +53,6 @@ font = ImageFont.load_default()
def get_track(): def get_track():
main()
print('getting current song info') print('getting current song info')
sp = spotipy.Spotify(auth=token) sp = spotipy.Spotify(auth=token)
track = sp.currently_playing() track = sp.currently_playing()
@ -237,7 +236,7 @@ if __name__ == "__main__":
get_access_token() get_access_token()
drawCanvas() drawCanvas()
time.sleep(10) time.sleep(10)
main()