Skip to content

Commit 1484e08

Browse files
authored
Fix formatting
1 parent 28edf2d commit 1484e08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ def skipIfBuildType(types: list[str]):
11551155
"""
11561156
types = [name.lower() for name in types]
11571157
return unittest.skipIf(
1158-
configuration.cmake_build_type is not None and
1159-
configuration.cmake_build_type.lower() in types,
1158+
configuration.cmake_build_type is not None
1159+
and configuration.cmake_build_type.lower() in types,
11601160
"skip on {} build type(s)".format(", ".join(types)),
11611161
)

0 commit comments

Comments
 (0)