Skip to content

Commit 6d0abdf

Browse files
committed
Fix infernal Python linter warnings
1 parent 7591d44 commit 6d0abdf

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

utils/swift_build_support/swift_build_support/products/backdeployconcurrency.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,11 @@ def build(self, host_target):
8686

8787
# Propagate version information
8888
if self.args.swift_user_visible_version is not None:
89-
self.cmake_options.define('SWIFT_VERSION', str(self.args.swift_user_visible_version))
89+
self.cmake_options.define('SWIFT_VERSION',
90+
str(self.args.swift_user_visible_version))
9091
if self.args.swift_compiler_version is not None:
91-
self.cmake_options.define('SWIFT_COMPILER_VERSION', str(self.args.swift_compiler_version))
92-
92+
self.cmake_options.define('SWIFT_COMPILER_VERSION',
93+
str(self.args.swift_compiler_version))
9394

9495
# Only install the "stdlib" component, which contains the concurrency
9596
# module.

0 commit comments

Comments
 (0)