From 2f8b7b10e5053230f7f6d5c422e3d6a0a5236ba4 Mon Sep 17 00:00:00 2001 From: Evan Kiefl Date: Fri, 1 Mar 2024 14:02:59 -0800 Subject: [PATCH] rm vscode --- .vscode/launch.json | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 83ca3a49..00000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - // NOTE: I (@ekiefl) don't use VSCode, but @kerby2000, a contributor, finds these settings - // useful for development. I'll leave them here but your mileage may vary. - // - // 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: Without Monitoring", - "type": "python", - "request": "launch", - "program": "run_pooltool", - "subProcess": true, - "console": "integratedTerminal", - "justMyCode": true, - }, - { - "name": "Python: With Monitoring", - "type": "python", - "request": "launch", - "program": "run_pooltool", - "subProcess": true, - "console": "integratedTerminal", - "justMyCode": true, - "args": [ - "--monitor" - ] - } - ] -}