diff --git a/.learn/exercises/07.1-test-post-todo/README.md b/.learn/exercises/07.1-test-post-todo/README.md index 02a5bdc1..3b9fdb50 100644 --- a/.learn/exercises/07.1-test-post-todo/README.md +++ b/.learn/exercises/07.1-test-post-todo/README.md @@ -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' ```