Skip to content

Commit 6b77dd6

Browse files
committed
Removed bold from style_success
1 parent 567885b commit 6b77dd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd2/ansi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def style(text: Any, *, fg: str = '', bg: str = '', bold: bool = False, underlin
183183
# Default styles for printing strings of various types.
184184
# These can be altered to suit an application's needs and only need to be a
185185
# function with the following structure: func(str) -> str
186-
style_success = functools.partial(style, fg='green', bold=True)
186+
style_success = functools.partial(style, fg='green')
187187
style_warning = functools.partial(style, fg='bright_yellow')
188188
style_error = functools.partial(style, fg='bright_red')
189189

0 commit comments

Comments
 (0)