Skip to content

Commit

Permalink
Merge pull request #83 from JoseGermanx/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
alesanchezr authored Jul 2, 2024
2 parents 502accf + 86ab446 commit bcc93fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .learn/exercises/07.1-test-post-todo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This is what you should have so far for the `POST /todos` endpoint. Take some ti
```python
@app.route('/todos', methods=['POST'])
def add_new_todo():
request_body = request.json
request_body = request.json()
print("Incoming request with the following body", request_body)
return 'Response for the POST todo'
```
Expand Down

0 comments on commit bcc93fc

Please sign in to comment.