Skip to content

Commit 2cdf6c9

Browse files
committed
fix: CI 시뮬레이터 선택 로직의 Python 문법 오류 수정
1 parent 23debb7 commit 2cdf6c9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/actions/ios-simulator-build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ runs:
5858
print("No available iPhone simulators found", file=sys.stderr)
5959
sys.exit(1)
6060
61-
latest_version = max(candidate[0] for candidate in candidates, key=ver_key)
61+
latest_version = max((candidate[0] for candidate in candidates), key=ver_key)
6262
latest_candidates = [
6363
candidate for candidate in candidates
6464
if candidate[0] == latest_version

0 commit comments

Comments
 (0)