1234567891011121314151617181920212223242526 |
- {
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
-
- {
- "name": "Python: Example Print",
- "type": "python",
- "request": "launch",
- "program": "${workspaceFolder}/generate_label_example.py",
- "console": "integratedTerminal",
- "args": []
- },
- {
- "name": "Python: Print CSV",
- "type": "python",
- "request": "launch",
- "program": "${workspaceFolder}/print_labels_from_csv.py",
- "console": "integratedTerminal",
- "args": []
- }
- ]
-
- }
|