Skip to content

Commit dd9542b

Browse files
committed
Fix type checking
1 parent b8ce2cf commit dd9542b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devtools/debug.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def breakpoint(self) -> None:
138138
Launch IPython debugger if installed. Otherwise, launch pdb.
139139
"""
140140
try:
141-
from IPython.terminal.debugger import TerminalPdb as Pdb
141+
from IPython.terminal.debugger import TerminalPdb as Pdb # type: ignore
142142
except ImportError:
143143
from pdb import Pdb
144144
Pdb(skip=['devtools.*']).set_trace()

0 commit comments

Comments
 (0)