Avoid attr error XD

sigint2
Tyler Goodlet 2022-02-16 13:07:21 -05:00
parent 266b0053dc
commit a6884e32cf
1 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,8 @@ try:
except ImportError: except ImportError:
# pdbpp is installed in regular mode...it monkey patches stuff # pdbpp is installed in regular mode...it monkey patches stuff
import pdb import pdb
assert pdb.xpm, "pdbpp is not installed?" # type: ignore xpm = getattr(pdb, 'xpm', None)
assert xpm, "pdbpp is not installed?" # type: ignore
pdbpp = pdb pdbpp = pdb
log = get_logger(__name__) log = get_logger(__name__)