Skip to content

Commit 238789e

Browse files
authored
Update solution.hide.py
1 parent e074fa3 commit 238789e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.learn/exercises/08-delete-todo/solution.hide.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ def add_new_todo():
1616

1717
@app.route('/todos/<int:position>', methods=['DELETE'])
1818
def delete_todo(position):
19-
print("This is the position to delete: ",position)
19+
print("This is the position to delete:", position)
2020
return 'something'
2121

2222

23-
# These two lines should always be at the end of your app.py file.
23+
# These two lines should always be at the end of your app.py file
2424
if __name__ == '__main__':
25-
app.run(host='0.0.0.0', port=3245, debug=True)
25+
app.run(host='0.0.0.0', port=3245, debug=True)

0 commit comments

Comments
 (0)