Skip to content

Commit 91f3641

Browse files
committed
fmt
1 parent 3d096c6 commit 91f3641

File tree

1 file changed

+3
-1
lines changed
  • cross-project-tests/debuginfo-tests/dexter/dex/debugger

1 file changed

+3
-1
lines changed

cross-project-tests/debuginfo-tests/dexter/dex/debugger/DAP.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,9 @@ def _step(self, step_request_string):
647647
)
648648
response = self._await_response(step_req_id)
649649
if not response["success"]:
650-
raise DebuggerException(f"failed to perform debugger action: '{step_request_string}'")
650+
raise DebuggerException(
651+
f"failed to perform debugger action: '{step_request_string}'"
652+
)
651653
# If we've "stepped" to a breakpoint, then continue to hit the breakpoint properly.
652654
# NB: This is an issue that only seems relevant to LLDB, but is also harmless outside of LLDB; if it turns out
653655
# to cause issues for other debuggers, we can move it to a post-step hook.

0 commit comments

Comments
 (0)