diff --git a/published/20180730 How to use VS Code for your Python projects.md b/published/20180730 How to use VS Code for your Python projects.md index c332a42d60..2ae8bbd3c3 100644 --- a/published/20180730 How to use VS Code for your Python projects.md +++ b/published/20180730 How to use VS Code for your Python projects.md @@ -98,21 +98,21 @@ VS Code 的一个重要特点是它可以运行任务。需要运行的任务保 ``` { - // See https://go.microsoft.com/fwlink/?LinkId=733558 - // for the documentation about the tasks.json format - "version": "2.0.0", - "tasks": [ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ { - "label": "Run Debug Server", - "type": "shell", - "command": "${workspaceRoot}/.venv/bin/flask run -h 0.0.0.0 -p 5000", - "group": { - "kind": "build", - "isDefault": true + "label": "Run Debug Server", + "type": "shell", + "command": "${workspaceRoot}/.venv/bin/flask run -h 0.0.0.0 -p 5000", + "group": { + "kind": "build", + "isDefault": true + } } - } - ] + ] } ```