when running dash in jupyter notebook, how to do debugging?
typically, I use below if I just run jupyter notebook,
import ipdb; ipdb.set_trace()
However with dash, it doesn't work, it just show ipdb> , then no prompt for me to enter for debugging.
Thanks