Fix: missing import in gdb pretty printers

Not sure why this is suddenly necessary, but I get an error now
that I didn't get in the past without this. The error happened when
accessing `gdb.printing.PrettyPrinter` further down.
This commit is contained in:
Jacques Lucke
2025-02-25 22:56:05 +01:00
parent 6b6e6a2cd1
commit 96e87d1e64

View File

@@ -27,6 +27,7 @@ __all__ = (
)
import gdb
import gdb.printing
from contextlib import contextmanager
from gdb.FrameDecorator import FrameDecorator