Files
Auto_Bangumi/.vscode/launch.json
Sean 86f77641ea refactor and minor bug fix
- use logging module instead of print
- format by black
- use utf-8 as default encoding on log and file operate
- fix use undefined var
2022-06-02 07:00:26 +08:00

17 lines
577 B
JSON

{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: docker_main",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/AutoBangumi/app/docker_main.py",
"cwd": "${workspaceFolder}/AutoBangumi/app",
"console": "integratedTerminal",
"justMyCode": true
}
]
}