From 6304fb585d317febcd6ba679d0296035008e1995 Mon Sep 17 00:00:00 2001 From: Aaron Lichtman Date: Mon, 15 Jan 2024 15:31:25 -0800 Subject: [PATCH] Remove args from .vscode/launch.json --- .vscode/launch.json | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 46602a47..aac569e4 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,19 +1,16 @@ { - // 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": "jrnl", - "justMyCode": true, - "args": [ - "--export", - "heatmap", - "--debug"] - } - ] -} \ No newline at end of file + // 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": "jrnl", + "justMyCode": true, + "args": [] + } + ] +}