Skip to content

Commit 493f5b1

Browse files
Rename app to application.
1 parent c01c071 commit 493f5b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wsgi.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from flask import Flask
2-
app = Flask(__name__)
2+
application = Flask(__name__)
33

4-
@app.route("/")
4+
@application.route("/")
55
def hello():
66
return "Hello World!"
77

88
if __name__ == "__main__":
9-
app.run()
9+
application.run()

0 commit comments

Comments
 (0)