Skip to content

Commit 81291e1

Browse files
committed
edited typo
1 parent f9f9720 commit 81291e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Procfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web: gunicorn --bind 0.0.0.0:$PORT flaskapp:app
1+
web: gunicorn app:app

app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def post(self):
1818

1919
class Recommend(Resource):
2020
def post(self):
21-
id = request.json["id"
21+
id = request.json["id"]
2222
recommend = recoms.generate_recoms(id)
2323
return recommend
2424

0 commit comments

Comments
 (0)