Skip to content

Commit d9bd8d0

Browse files
committed
Since we're lowering, don't need to check uppercase.
1 parent 3ff5504 commit d9bd8d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

runpod/serverless/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def start(config: Dict[str, Any]):
179179
core.main(config)
180180
return
181181

182-
case x if x.lower() in ["1", "t", "T", "TRUE", "true", "True"]:
182+
case x if x.lower() in ["1", "t", "true"]:
183183
core.main(config)
184184
return
185185

0 commit comments

Comments
 (0)