From 3ba197486543035d6d3e5f5a1109a0e489995e15 Mon Sep 17 00:00:00 2001 From: thejackal360 Date: Sat, 9 Dec 2023 08:36:40 -0800 Subject: [PATCH] Document how to prevent blank screen after first screen issue --- src/example/app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/example/app.py b/src/example/app.py index dfaf8ea..2f31f84 100755 --- a/src/example/app.py +++ b/src/example/app.py @@ -195,4 +195,6 @@ def gen_img(filename): if __name__ == "__main__": + print("\033[91mIf not hosting on a remote server with a URL, " + \ + "remember to run with the '--local' flag!\033[0m") app.run(debug=True)