Tremolo uses multiprocessing so you have to guard app.run()
with:
if __name__ == '__main__':
Otherwise it can be re-executed in the worker/child and will lead to confusion.
Tremolo uses multiprocessing so you have to guard app.run()
with:
if __name__ == '__main__':
Otherwise it can be re-executed in the worker/child and will lead to confusion.