Skip to content

Commit 9f24266

Browse files
committed
fix parameter on func def
1 parent 8a2fb8e commit 9f24266

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker-flask-mac/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66

77
@app.route("/")
8-
def hello(request):
9-
return Response("Hello from a Flask app within your Docker container!")
8+
def hello():
9+
return Response("Hi from your Flask app running in your Docker container!")
1010

1111

1212
if __name__ == "__main__":

0 commit comments

Comments
 (0)