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 238789e commit fd3d3feCopy full SHA for fd3d3fe
.learn/exercises/08-delete-todo/README.md
@@ -7,7 +7,7 @@ The main difference is that `DELETE /todos/<position:int>` will receive the posi
7
```python
8
@app.route('/todos/<int:position>', methods=['DELETE'])
9
def delete_todo(position):
10
- print("This is the position to delete: ", position)
+ print("This is the position to delete:", position)
11
return 'something'
12
```
13
0 commit comments