SuperScriptMaterializer/SuperScriptDecorator/.vscode/launch.json

14 lines
375 B
JSON
Raw Normal View History

2023-02-19 21:59:05 +08:00
{
"version": "0.2.0",
"configurations": [
{
"name": "SSDecorator",
"type": "python",
"request": "launch",
"program": "SuperScriptDecorator.py",
"console": "integratedTerminal",
"args": ["-d", "-i", "../example.txt", "-o", "decorate.db"],
"justMyCode": false
}
]
}