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 fd3d3fe commit a7c6cc4Copy full SHA for a7c6cc4
.learn/exercises/08-delete-todo/README.es.md
@@ -7,7 +7,7 @@ La principal diferencia es que `DELETE /todos/<position:int>` recibirá la posic
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