diff --git a/bake/scripts/indent.py b/bake/scripts/indent.py index 4c6cb8f..fe63f66 100644 --- a/bake/scripts/indent.py +++ b/bake/scripts/indent.py @@ -9,7 +9,6 @@ import click ) @click.option("--char", nargs=1, type=click.STRING, default="|", help="Prefix char.") def entrypoint(*, char, read_stderr): - """Indents and echoes string with a specific pipe.""" pipe = sys.stdin if not read_stderr else sys.stderr diff --git a/bake/scripts/notred.py b/bake/scripts/notred.py index aaaf836..5a229c3 100644 --- a/bake/scripts/notred.py +++ b/bake/scripts/notred.py @@ -8,7 +8,6 @@ from click.utils import strip_ansi @click.argument("s", type=click.STRING, default=False, required=False) @click.option("--err", is_flag=True, type=click.BOOL, default=False, help="Use stderr.") def entrypoint(s, *, err): - """Removes ANSI chraracters and trailing spaces from string input.""" if s is False: s = sys.stdin.read() diff --git a/bake/scripts/red.py b/bake/scripts/red.py index 3ffed59..ecce34b 100644 --- a/bake/scripts/red.py +++ b/bake/scripts/red.py @@ -26,8 +26,6 @@ import colorama ) @click.option("--bold", is_flag=True, type=click.BOOL, default=False, help="Be bold.") def entrypoint(s, *, fg, bg, bold, err, always): - """Echoes string with specific foreground and background color.""" - if always: # Don't strip colors. colorama.init(strip=False) diff --git a/bake/scripts/step.py b/bake/scripts/step.py index f8384a5..b240aad 100644 --- a/bake/scripts/step.py +++ b/bake/scripts/step.py @@ -22,7 +22,6 @@ colorama.init(strip=False) "--color", nargs=1, type=click.STRING, default="yellow", help="Color to use." ) def entrypoint(s, *, char, read_stderr, no_color, color): - """Echoes step titles in < + steptitle > format.""" pipe = sys.stdin if not read_stderr else sys.stderr if s is False: