diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-12-04 11:28:38 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-12-04 11:28:38 -0500 |
commit | 6b77dd6d06a92bfe24e31a20d45e29a25ea6659b (patch) | |
tree | d80d7705e680463f0b462c18bb08a7d0ef7c5f61 /cmd2/ansi.py | |
parent | 567885bc00f07fcb112c3aa3146b11006964503e (diff) | |
download | cmd2-git-6b77dd6d06a92bfe24e31a20d45e29a25ea6659b.tar.gz |
Removed bold from style_success
Diffstat (limited to 'cmd2/ansi.py')
-rw-r--r-- | cmd2/ansi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/ansi.py b/cmd2/ansi.py index f1b2def8..c875a9d1 100644 --- a/cmd2/ansi.py +++ b/cmd2/ansi.py @@ -183,7 +183,7 @@ def style(text: Any, *, fg: str = '', bg: str = '', bold: bool = False, underlin # Default styles for printing strings of various types. # These can be altered to suit an application's needs and only need to be a # function with the following structure: func(str) -> str -style_success = functools.partial(style, fg='green', bold=True) +style_success = functools.partial(style, fg='green') style_warning = functools.partial(style, fg='bright_yellow') style_error = functools.partial(style, fg='bright_red') |