diff options
Diffstat (limited to 'gdb-helpers/libcr.py')
-rw-r--r-- | gdb-helpers/libcr.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb-helpers/libcr.py b/gdb-helpers/libcr.py index dbe7ec8..c8addc6 100644 --- a/gdb-helpers/libcr.py +++ b/gdb-helpers/libcr.py @@ -139,7 +139,9 @@ class CrSetJmpBreakpoint(gdb.Breakpoint): def __init__(self, cr_globals: CrGlobals) -> None: self.cr_globals = cr_globals cr_globals.breakpoints += [self] - super().__init__(function="_cr_plat_setjmp_pre", type=gdb.BP_BREAKPOINT, internal=True) # type: ignore + super().__init__( + function="_cr_plat_setjmp_pre", type=gdb.BP_BREAKPOINT, internal=True + ) def stop(self) -> bool: if bool(gdb.parse_and_eval("env == &coroutine_add_env")): |