Update hello.py

This commit is contained in:
Liam 2022-06-10 00:24:27 -07:00 committed by GitHub
parent 727cd8fb71
commit e488045687
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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!"