From a269a532a0c391fd79af37e23d45e2c1dd46f84f Mon Sep 17 00:00:00 2001 From: Giovani Date: Tue, 8 Jun 2021 11:13:57 -0400 Subject: [PATCH] chore: change way program is launched --- .vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 17e15f2..6c85d1e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,10 +5,10 @@ "version": "0.2.0", "configurations": [ { - "name": "Python: Current File", + "name": "Python: Run main.py", "type": "python", "request": "launch", - "program": "${file}", + "program": "main.py", "console": "integratedTerminal" } ]