Skip to content

Commit 4a38f03

Browse files
committed
Fix Python lint warnings
1 parent 78eb881 commit 4a38f03

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

utils/swift_build_support/swift_build_support/build_script_invocation.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,10 +253,11 @@ def convert_to_impl_arguments(self):
253253

254254
if args.build_early_swiftsyntax:
255255
early_swiftsyntax_build_dir = os.path.join(
256-
self.workspace.build_root, '%s-%s' % ('earlyswiftsyntax',
257-
self.args.host_target))
256+
self.workspace.build_root,
257+
'%s-%s' % ('earlyswiftsyntax', self.args.host_target))
258258
args.extra_cmake_options.append(
259-
'-DSWIFT_PATH_TO_EARLYSWIFTSYNTAX_BUILD_DIR:PATH={}'.format(early_swiftsyntax_build_dir))
259+
'-DSWIFT_PATH_TO_EARLYSWIFTSYNTAX_BUILD_DIR:PATH={}'
260+
.format(early_swiftsyntax_build_dir))
260261

261262
# Then add subproject install flags that either skip building them /or/
262263
# if we are going to build them and install_all is set, we also install

0 commit comments

Comments
 (0)