We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23debb7 commit 2cdf6c9Copy full SHA for 2cdf6c9
1 file changed
.github/actions/ios-simulator-build/action.yml
@@ -58,7 +58,7 @@ runs:
58
print("No available iPhone simulators found", file=sys.stderr)
59
sys.exit(1)
60
61
- latest_version = max(candidate[0] for candidate in candidates, key=ver_key)
+ latest_version = max((candidate[0] for candidate in candidates), key=ver_key)
62
latest_candidates = [
63
candidate for candidate in candidates
64
if candidate[0] == latest_version
0 commit comments