Skip to content

Commit 1faea15

Browse files
committed
format
1 parent 4d7a735 commit 1faea15

File tree

1 file changed

+6
-2
lines changed
  • lldb/test/API/functionalities/step_scripted

1 file changed

+6
-2
lines changed

lldb/test/API/functionalities/step_scripted/Steps.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,19 @@ def __init__(self, thread_plan, dict):
5050
super().__init__(thread_plan)
5151

5252
def queue_child_thread_plan(self):
53-
return self.thread_plan.QueueThreadPlanForStepSingleInstruction(False, lldb.SBError())
53+
return self.thread_plan.QueueThreadPlanForStepSingleInstruction(
54+
False, lldb.SBError()
55+
)
5456

5557

5658
class StepSingleInstructionWithStepOver(StepWithChild):
5759
def __init__(self, thread_plan, dict):
5860
super().__init__(thread_plan)
5961

6062
def queue_child_thread_plan(self):
61-
return self.thread_plan.QueueThreadPlanForStepSingleInstruction(True, lldb.SBError())
63+
return self.thread_plan.QueueThreadPlanForStepSingleInstruction(
64+
True, lldb.SBError()
65+
)
6266

6367

6468
# This plan does a step-over until a variable changes value.

0 commit comments

Comments
 (0)