ci: fix yaml indentation for python blocks

main
Peter Steinberger 2025-12-14 03:51:13 +00:00
parent dde9fddae4
commit 3885a2a20f
1 changed files with 51 additions and 49 deletions

View File

@ -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)