Skip to content

Commit 2bbbe7c

Browse files
Teste beta layer
1 parent c693d44 commit 2bbbe7c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

layer_v3/layer/canary_stack.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,15 +131,15 @@ def __init__(
131131
PolicyStatement(effect=Effect.ALLOW, actions=["lambda:GetFunction"], resources=["*"]),
132132
)
133133

134-
if python_version == "3.8":
134+
if python_version == "python3.8":
135135
runtime = Runtime.PYTHON_3_8
136-
elif python_version == "3.9":
136+
elif python_version == "python3.9":
137137
runtime = Runtime.PYTHON_3_9
138-
elif python_version == "3.10":
138+
elif python_version == "python3.10":
139139
runtime = Runtime.PYTHON_3_10
140-
elif python_version == "3.11":
140+
elif python_version == "python3.11":
141141
runtime = Runtime.PYTHON_3_11
142-
elif python_version == "3.12":
142+
elif python_version == "python3.12":
143143
runtime = Runtime.PYTHON_3_12
144144
else:
145145
raise ValueError("Unsupported Python version")

0 commit comments

Comments
 (0)