Skip to content

Commit 7930a18

Browse files
committed
fmt
1 parent 85fe6e3 commit 7930a18

File tree

1 file changed

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

1 file changed

+4
-1
lines changed

cross-project-tests/debuginfo-tests/dexter/dex/debugger/lldb/LLDB.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,10 @@ def _confirm_triggered_breakpoint_ids(self, dex_bp_ids):
531531
# Function and instruction breakpoints don't use conditions.
532532
# FIXME: That's not a DAP restruction, so they could in future.
533533
if dex_bp_id not in self.bp_info:
534-
assert dex_bp_id in self.function_bp_info or dex_bp_id in self.instruction_bp_info
534+
assert (
535+
dex_bp_id in self.function_bp_info
536+
or dex_bp_id in self.instruction_bp_info
537+
)
535538
confirmed_breakpoint_ids.add(dex_bp_id)
536539
continue
537540

0 commit comments

Comments
 (0)