From 3d343ab96d90a76b9aaa4eba1886663ae924de86 Mon Sep 17 00:00:00 2001 From: sstratoti Date: Thu, 27 Oct 2022 00:46:24 -0400 Subject: [PATCH] Turning off Debug mode per #63 --- coral-app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coral-app.py b/coral-app.py index 7a6f1d5..9406f77 100755 --- a/coral-app.py +++ b/coral-app.py @@ -112,4 +112,4 @@ def predict(): interpreter.allocate_tensors() print("\n Initialised interpreter with model : {}".format(model_file)) - app.run(host="0.0.0.0", debug=True, port=args.port) \ No newline at end of file + app.run(host="0.0.0.0", debug=False, port=args.port) \ No newline at end of file