From 732c31993a8923c3c0c4959b5c485efad648ea62 Mon Sep 17 00:00:00 2001 From: Florian Strzelecki Date: Thu, 13 Aug 2020 20:17:22 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: dgw --- sopel/cli/utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sopel/cli/utils.py b/sopel/cli/utils.py index c76717dbfb..4f3623c6fd 100644 --- a/sopel/cli/utils.py +++ b/sopel/cli/utils.py @@ -39,7 +39,7 @@ def _colored(text, color, reset=True): def green(text, reset=True): - """Add ANSI escape sequences to make the text green in term. + """Add ANSI escape sequences to make the text green in terminal. :param str text: text to colorized in green :param bool reset: if the text color must be reset after (default ``True``) @@ -50,7 +50,7 @@ def green(text, reset=True): def yellow(text, reset=True): - """Add ANSI escape sequences to make the text yellow in term. + """Add ANSI escape sequences to make the text yellow in terminal. :param str text: text to colorized in yellow :param bool reset: if the text color must be reset after (default ``True``) @@ -61,7 +61,7 @@ def yellow(text, reset=True): def red(text, reset=True): - """Add ANSI escape sequences to make the text red in term. + """Add ANSI escape sequences to make the text red in terminal. :param str text: text to colorized in red :param bool reset: if the text color must be reset after (default ``True``)