master
Lukas Schulz 2020-12-19 22:29:48 +01:00
parent 41fed62cfe
commit c30bc7efcd
1 changed files with 2 additions and 1 deletions

View File

@ -54,7 +54,8 @@ async def get_track():
#else:
print("Can't get token for", username)
def main():
screen.SetImage(await get_track().convert('RGB'))
thumbnail = get_track()
screen.SetImage(thumbnail.convert('RGB'))
if __name__ == "__main__":