From afe6542b30def82573e070371281c05dc593a739 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sat, 30 Nov 2024 17:48:37 -0700 Subject: Pull in https://github.com/python/typeshed/pull/13169 --- gdb-helpers/libcr.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gdb-helpers/libcr.py') 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")): -- cgit v1.2.3-2-g168b