Skip to content

Commit 639c0be

Browse files
committed
Get python-lint build clean
1 parent 7007c34 commit 639c0be

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

utils/swift_build_support/tests/test_workspace.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ def test_workspace(self):
5050

5151
class ComputeBuildSubdirTestCase(unittest.TestCase):
5252

53-
def create_basic_args(self, generator, variant, assertions, enable_asan=False):
53+
def create_basic_args(self, generator, variant, assertions,
54+
enable_asan=False):
5455
return argparse.Namespace(
5556
cmake_generator=generator,
5657
cmark_build_variant=variant,
@@ -139,7 +140,8 @@ def test_all_combinations_are_unique(self):
139140

140141
def generate():
141142
for c in productions:
142-
args = argparse.Namespace(cmake_generator="Ninja", enable_asan=False)
143+
args = argparse.Namespace(cmake_generator="Ninja",
144+
enable_asan=False)
143145
for key, val in zip(keys, c):
144146
setattr(args, key, val)
145147
yield compute_build_subdir(args)

0 commit comments

Comments
 (0)