Skip to content

Commit d388e06

Browse files
committed
nullish coalescing
1 parent 6483f7a commit d388e06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

agentstack/cli/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def validate(text: str) -> str | bool:
5555

5656
value = questionary.text(
5757
message,
58-
default=default,
58+
default=default or "",
5959
validate=validate if validate_func or min_length or snake_case else None,
6060
).ask()
6161

0 commit comments

Comments
 (0)