We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8ce2cf commit dd9542bCopy full SHA for dd9542b
devtools/debug.py
@@ -138,7 +138,7 @@ def breakpoint(self) -> None:
138
Launch IPython debugger if installed. Otherwise, launch pdb.
139
"""
140
try:
141
- from IPython.terminal.debugger import TerminalPdb as Pdb
+ from IPython.terminal.debugger import TerminalPdb as Pdb # type: ignore
142
except ImportError:
143
from pdb import Pdb
144
Pdb(skip=['devtools.*']).set_trace()
0 commit comments