Skip to content

Commit 79394c3

Browse files
committed
Python formatting
1 parent 318f293 commit 79394c3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lldb/test/API/tools/lldb-dap/progress/Progress_emitter.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ def __call__(self, debugger, command, exe_ctx, result):
8585
"Progress tester", "Initial Indeterminate Detail", debugger
8686
)
8787
else:
88-
progress = lldb.SBProgress("Progress tester", "Initial Detail", total, debugger)
88+
progress = lldb.SBProgress(
89+
"Progress tester", "Initial Detail", total, debugger
90+
)
8991

9092
# Check to see if total is set to None to indicate an indeterminate progress
9193
# then default to 10 steps.

0 commit comments

Comments
 (0)