ci: fix yaml indentation for python blocks
parent
dde9fddae4
commit
3885a2a20f
|
|
@ -143,7 +143,9 @@ import re
|
|||
import subprocess
|
||||
import sys
|
||||
|
||||
data = json.loads(subprocess.check_output(["xcrun", "simctl", "list", "devices", "available", "-j"], text=True))
|
||||
data = json.loads(
|
||||
subprocess.check_output(["xcrun", "simctl", "list", "devices", "available", "-j"], text=True)
|
||||
)
|
||||
runtimes = []
|
||||
for runtime in data.get("devices", {}).keys():
|
||||
m = re.search(r"\\.iOS-(\\d+)-(\\d+)$", runtime)
|
||||
|
|
|
|||
Loading…
Reference in New Issue