Skip to content

Commit

Permalink
fix: remove unneeded printing
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethnym committed Jul 24, 2024
1 parent e4f4124 commit 6ddea4d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions server.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def advance():
else:
current_index = current_index + 1

threading.Thread(target=generate_new_audio).start()
# threading.Thread(target=generate_new_audio).start()

t = threading.Timer(60, advance)
t.start()
Expand All @@ -90,7 +90,6 @@ def advance():

@app.get("/current.mp3")
def get_current_audio():
print("hello")
return FileResponse(f"{current_index}.mp3")


Expand Down

0 comments on commit 6ddea4d

Please sign in to comment.