Skip to content

Commit 909f305

Browse files
committed
Formatting
1 parent 1d1c3a6 commit 909f305

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ def expectedFlakey(expected_fn, bugnumber=None, num_retries=3):
534534
def expectedFailure_impl(func):
535535
@wraps(func)
536536
def wrapper(*args, **kwargs):
537-
for i in range(1, num_retries+1):
537+
for i in range(1, num_retries + 1):
538538
try:
539539
return func(*args, **kwargs)
540540
except Exception:

0 commit comments

Comments
 (0)