From 11f381170ad3141007d03cfe58da7a9c9be02a83 Mon Sep 17 00:00:00 2001 From: Privat33r-dev Date: Wed, 10 Apr 2024 10:56:27 +0200 Subject: [PATCH] Update vscode configuration: replace python with debugpy The `python` is considered deprecated, --- .vscode/launch.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 20c5051..829cb09 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,7 +6,7 @@ "configurations": [ { "name": "Clairvoyance on tests/apollo-server", - "type": "python", + "type": "debugpy", "request": "launch", "cwd": "${workspaceFolder}", "module": "clairvoyance", @@ -23,7 +23,7 @@ }, { "name": "Clairvoyance on localhost:4000", - "type": "python", + "type": "debugpy", "request": "launch", "cwd": "${workspaceFolder}", "module": "clairvoyance", @@ -38,7 +38,7 @@ }, { "name": "Clairvoyance on rick and morty GQL application", - "type": "python", + "type": "debugpy", "request": "launch", "cwd": "${workspaceFolder}", "module": "clairvoyance",