Skip to content

Commit aa3e7fb

Browse files
committed
Fix Python linting/testing issues
1 parent 497751b commit aa3e7fb

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

utils/build_swift/build_swift/driver_arguments.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,8 @@ def create_argument_parser():
599599
option(['--back-deploy-concurrency'], toggle_true('build_backdeployconcurrency'),
600600
help='build back-deployment support for concurrency')
601601

602-
option(['--install-back-deploy-concurrency'], toggle_true('install_backdeployconcurrency'),
602+
option(['--install-back-deploy-concurrency'],
603+
toggle_true('install_backdeployconcurrency'),
603604
help='install back-deployment support libraries for concurrency')
604605

605606
option(['--libcxx'], toggle_true('build_libcxx'),

utils/build_swift/tests/expected_options.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@
169169
'only_executable_test': False,
170170
'only_non_executable_test': False,
171171
'infer_dependencies': False,
172+
'install_backdeployconcurrency': False,
172173
'install_prefix': targets.install_prefix(),
173174
'install_symroot': None,
174175
'install_destdir': None,
@@ -476,7 +477,8 @@ class BuildScriptImplOption(_BaseOption):
476477
dest='test_early_swift_driver', value=False),
477478

478479
SetTrueOption('--back-deploy-concurrency', dest='build_backdeployconcurrency'),
479-
SetTrueOption('--install-back-deploy-concurrency', dest='install_backdeployconcurrency'),
480+
SetTrueOption('--install-back-deploy-concurrency',
481+
dest='install_backdeployconcurrency'),
480482
SetTrueOption('--benchmark'),
481483
SetTrueOption('--clean'),
482484
SetTrueOption('--dry-run'),

0 commit comments

Comments
 (0)