tests   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 0
1
"""Integration tests for the package."""
2
3
try:
4
    from IPython.terminal.debugger import TerminalPdb as Debugger
5
except ImportError:
6
    from pdb import Pdb as Debugger  # type: ignore
7