master
Lukas Schulz 2020-12-19 22:44:48 +01:00
parent d03a44b7c2
commit 06041a5542
1 changed files with 2 additions and 1 deletions

View File

@ -58,7 +58,8 @@ def get_track():
#else:
print("Can't get token for", username)
def main():
threading.Thread(target=get_track)
x = threading.Thread(target=get_track)
x.start()