From b97e8260aeab0dbe8b96fa03ace0ae3f35ed05fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Sat, 5 Jul 2025 03:51:25 +0200 Subject: [PATCH] Debug with module instead of starting main.py --- .vscode/launch.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index e228a7c..6f0d14b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,8 +5,7 @@ "name": "Python Debugger: Start bot", "type": "debugpy", "request": "launch", - "program": "${workspaceFolder}/discord_reminder_bot/main.py", - "console": "integratedTerminal", + "module": "discord_reminder_bot.main" } ] }