forked from goodboy/tractor
1
0
Fork 0

Drop commented `pdbpp` import logic

master^2
Tyler Goodlet 2023-05-15 09:01:55 -04:00
parent 73befac9bc
commit 1c3893a383
1 changed files with 0 additions and 12 deletions

View File

@ -54,18 +54,6 @@ from ._exceptions import (
) )
from ._ipc import Channel from ._ipc import Channel
# TODO: we can drop this now yah?
# try:
# # wtf: only exported when installed in dev mode?
# import pdbp
# except ImportError:
# # pdbpp is installed in regular mode...it monkey patches stuff
# import pdb
# xpm = getattr(pdb, 'xpm', None)
# assert xpm, "pdbpp is not installed?" # type: ignore
# pdbpp = pdb
log = get_logger(__name__) log = get_logger(__name__)