File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -329,7 +329,6 @@ def _getAndroidDeviceApi(cfg):
329
329
# Avoid building on platforms that don't support modules properly.
330
330
or not hasCompileFlag (cfg , "-Wno-reserved-module-identifier" ),
331
331
),
332
-
333
332
]
334
333
335
334
# Deduce and add the test features that that are implied by the #defines in
Original file line number Diff line number Diff line change @@ -146,9 +146,12 @@ def parseScript(test, preamble):
146
146
elif module == "std.compat" :
147
147
has_std_compat_module = True
148
148
else :
149
- script .insert (0 , f"echo \" The module '{ module } ' is not valid, use 'std' or 'std.compat'\" " )
150
- script .insert (1 , "false" );
151
- return script
149
+ script .insert (
150
+ 0 ,
151
+ f"echo \" The module '{ module } ' is not valid, use 'std' or 'std.compat'\" " ,
152
+ )
153
+ script .insert (1 , "false" )
154
+ return script
152
155
153
156
if modules :
154
157
# This flag is needed for both modules.
You can’t perform that action at this time.
0 commit comments