Skip to content

Commit e7b017e

Browse files
committed
Improve getting_started.py intro banner by including unicode emojis to make it very clear we support that
1 parent 1771308 commit e7b017e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

examples/getting_started.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,12 @@ def __init__(self) -> None:
4848
)
4949

5050
# Prints an intro banner once upon application startup
51-
self.intro = stylize(
52-
'Welcome to cmd2!',
53-
style=Style(color=Color.GREEN1, bgcolor=Color.GRAY0, bold=True),
51+
self.intro = (
52+
stylize(
53+
'Welcome to cmd2!',
54+
style=Style(color=Color.GREEN1, bgcolor=Color.GRAY0, bold=True),
55+
)
56+
+ ' Note the full Unicode support: 😇 💩'
5457
)
5558

5659
# Show this as the prompt when asking for input

0 commit comments

Comments
 (0)