We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4cdd62 commit e9e22b0Copy full SHA for e9e22b0
.learn/exercises/08.1-delete-live-test/README.md
@@ -1,13 +1,14 @@
1
-## `08.1` Test your endpoint
+# `08.1` Test your endpoint
2
3
-This is what you have so far about the `DELETE /todos/<int:position>` endpoint, take some time to analyze each line:
+This is what you have so far about the `DELETE /todos/<int:position>` endpoint; take some time to analyze each line:
4
5
```python
6
@app.route('/todos/<int:position>', methods=['DELETE'])
7
def delete_todo(position):
8
- print("This is the position to delete: ",position)
+ print("This is the position to delete:", position)
9
return 'something'
10
```
11
+
12
Use Postman, Insomnia or any other API Request Builder that you like to test your API.
13
14
| | |
0 commit comments