From b42faf9ee682a56d20eadff4bb795c53cea1d218 Mon Sep 17 00:00:00 2001 From: Alejandra <90076947+alejsdev@users.noreply.github.com> Date: Fri, 2 Feb 2024 13:48:51 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Update=20debugging.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en/docs/tutorial/debugging.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/en/docs/tutorial/debugging.md b/docs/en/docs/tutorial/debugging.md index 5e746529be..750d3e5e4b 100644 --- a/docs/en/docs/tutorial/debugging.md +++ b/docs/en/docs/tutorial/debugging.md @@ -20,7 +20,9 @@ In VS Code, you can now debug this application like this: * There, click on the link "create a launch.json file". -* In the dropdown that now appears, select "FastAPI". +* From the dropdown menu, select "Python Debugger". + +* Next, choose "FastAPI" from the options. * In the subsequent dropdown, enter the name of your application file, here `myapp.py` (This is only necessary because VS Code did not find a `main.py` file). @@ -53,7 +55,7 @@ In VS Code, you can now debug this application like this: * The debug configuration you just created will now also appear in the debug panel at the top as "Python: FastAPI". -* Click on the green triangle next to your "Python: FastAPI" configuration, or press the `F5` key. +* Click on the green triangle next to your "Python Debugger: FastAPI" configuration, or press the `F5` key. * Debugging begins. A box appears at the top with buttons, for example to continue debugging after a breakpoint or to end debugging.