From e4880456872c59648e738dfeacdb1fdee63751cc Mon Sep 17 00:00:00 2001 From: Liam <101684827+SkiingIsFun123@users.noreply.github.com> Date: Fri, 10 Jun 2022 00:24:27 -0700 Subject: [PATCH] Update hello.py --- tests/test_apps/helloworld/hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_apps/helloworld/hello.py b/tests/test_apps/helloworld/hello.py index 71a2f90c..df55b9a0 100644 --- a/tests/test_apps/helloworld/hello.py +++ b/tests/test_apps/helloworld/hello.py @@ -2,7 +2,7 @@ from flask import Flask app = Flask(__name__) - +#Returns "Hello World!" when "/" is accessed by the user @app.route("/") def hello(): return "Hello World!"