From 3703e4f705541787fd5b5c071eaf6b1152b75d42 Mon Sep 17 00:00:00 2001 From: Poiuy7312 Date: Tue, 19 Sep 2023 16:14:46 -0400 Subject: [PATCH] style: got rid of checkmarks in util.py --- chasten/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chasten/util.py b/chasten/util.py index 859cb42d..039c3382 100644 --- a/chasten/util.py +++ b/chasten/util.py @@ -21,8 +21,8 @@ def get_human_readable_boolean(answer: bool) -> str: def get_symbol_boolean(answer: bool) -> str: """Produce a symbol-formatted version of a boolean value of True or False.""" if answer: - return f"[green]{checkmark_unicode}[/green]" - return f"[red]{xmark_unicode}[/red]" + return "[green]Yes[/green]" + return "[red]No[/red]" def get_chasten_version() -> str: