From 54f56c1b1a7ee79af0e3e8515877d90897be6023 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 19 Nov 2023 15:38:43 +0100 Subject: [PATCH] Add launch configuration for Python module --- .vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..9d7c4a5 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // 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: Module", + "type": "python", + "request": "launch", + "module": "gptbot", + "justMyCode": true + } + ] +} \ No newline at end of file