We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d096c6 commit 91f3641Copy full SHA for 91f3641
cross-project-tests/debuginfo-tests/dexter/dex/debugger/DAP.py
@@ -647,7 +647,9 @@ def _step(self, step_request_string):
647
)
648
response = self._await_response(step_req_id)
649
if not response["success"]:
650
- raise DebuggerException(f"failed to perform debugger action: '{step_request_string}'")
+ raise DebuggerException(
651
+ f"failed to perform debugger action: '{step_request_string}'"
652
+ )
653
# If we've "stepped" to a breakpoint, then continue to hit the breakpoint properly.
654
# NB: This is an issue that only seems relevant to LLDB, but is also harmless outside of LLDB; if it turns out
655
# to cause issues for other debuggers, we can move it to a post-step hook.
0 commit comments