Skip to content

Commit 4638fe1

Browse files
authored
Merge pull request #27865 from nkcsgexi/python-fix-lint
python: fix lint issues
2 parents d42d2e1 + 7bb0e9b commit 4638fe1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/build-script

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,15 +157,15 @@ class BuildScriptInvocation(object):
157157
if args.build_tvos and args.build_tvos_device:
158158
targets.extend(StdlibDeploymentTarget.AppleTV.targets)
159159
if args.build_watchos and args.build_watchos_simulator:
160-
targets.extend(StdlibDeploymentTarget.AppleWatchSimulator.targets)
160+
targets.extend(StdlibDeploymentTarget
161+
.AppleWatchSimulator.targets)
161162
if args.build_watchos and args.build_watchos_device:
162163
targets.extend(StdlibDeploymentTarget.AppleWatch.targets)
163164
return targets
164165
else:
165166
# All other machines only configure their host stdlib by default.
166167
return [host_target]
167168

168-
169169
@staticmethod
170170
def apply_default_arguments(toolchain, args):
171171
# Infer if ninja is required

0 commit comments

Comments
 (0)