'Unable to get VS Code to access other code while debugging

When I am debugging my python code it skips over code not written by me. I've set justmycode to false and I've tried updating request however, it won't accept any values except launch or attach and purpose is set to debug-test. Nothing seems to work.

My JSON file:

 "version": "0.2.0",
   "configurations": [
       {
           "name": "Python: Current File",
           "type": "python",
           "request": "launch",
           "program": "${file}",
           "console": "integratedTerminal",
           "justMyCode":false,
           "purpose": ["debug-test"]
       }
   ]
}

The message from the debugger(yes, I stepped in not over):

Frame skipped from debugging during step-in. Note: may have been skipped because of "justMyCode" option (default == true). Try setting "justMyCode": false in the debug configuration (e.g., launch.json).

Sorry if this a stupid question I am a newbie and feeling totally over my head in my internship.

Literally this is my entire code. The message from the debugger appears when I try to step into execute().

pQuery=p.logquery()
pQuery.execute()


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source