I want to know, is there any way to debug user-written modules, if they are used in Jupyter notebook, using VSCode?
I want it to work so that if I create a breakpoint in my module and when I call some function from this module in Jupyter notebook, it will stop and allow me to see some useful data. Default VSCode debugger works this way only if breakpoint is set in the file that I run.
I tried to set breakpoints (like function or red dot on the left from the code) in module, but calling function with it from notebook doesn't trigger it.