@@ -105,7 +105,7 @@ def waitUntil(self, condition_callback):
105
105
return False
106
106
107
107
def verify_breakpoint_hit (
108
- self , breakpoint_ids , timeout = DEFAULT_TIMEOUT , reason : Optional [str ] = None
108
+ self , breakpoint_ids , timeout = DEFAULT_TIMEOUT , reason : Optional [str ] = None
109
109
):
110
110
"""Wait for the process we are debugging to stop, and verify we hit
111
111
any breakpoint location in the "breakpoint_ids" array.
@@ -119,9 +119,9 @@ def verify_breakpoint_hit(
119
119
if "reason" not in body :
120
120
continue
121
121
if body ["reason" ] not in (
122
- "breakpoint" ,
123
- "instruction breakpoint" ,
124
- "data breakpoint" ,
122
+ "breakpoint" ,
123
+ "instruction breakpoint" ,
124
+ "data breakpoint" ,
125
125
):
126
126
continue
127
127
if "description" not in body :
@@ -334,12 +334,12 @@ def continue_to_next_stop(self, timeout=DEFAULT_TIMEOUT):
334
334
return self .dap_server .wait_for_stopped (timeout )
335
335
336
336
def continue_to_breakpoint (
337
- self , breakpoint_id : str , timeout = DEFAULT_TIMEOUT , reason : Optional [str ] = None
337
+ self , breakpoint_id : str , timeout = DEFAULT_TIMEOUT , reason : Optional [str ] = None
338
338
):
339
339
self .continue_to_breakpoints ([breakpoint_id ], timeout , reason )
340
340
341
341
def continue_to_breakpoints (
342
- self , breakpoint_ids , timeout = DEFAULT_TIMEOUT , reason : Optional [str ] = None
342
+ self , breakpoint_ids , timeout = DEFAULT_TIMEOUT , reason : Optional [str ] = None
343
343
):
344
344
self .do_continue ()
345
345
self .verify_breakpoint_hit (breakpoint_ids , timeout , reason )
0 commit comments