default-python: Swap order of yes/no in serverless template (#2386)

## Changes
Since at this moment we set default to 'no', interactively it should
also default to 'no'. However, it just uses the first option.

## Tests
Manually running `cli bundle init default-python`
This commit is contained in:
Denis Bilenko 2025-02-26 15:45:32 +01:00 committed by GitHub
parent 6d27c7e69d
commit ab3d82e32e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@
"serverless": {
"type": "string",
"default": "no",
"enum": ["yes", "no"],
"enum": ["no", "yes"],
"description": "Use serverless compute",
"order": 5
}