Skip to content

Commit

Permalink
style: got rid of checkmarks in util.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Poiuy7312 committed Sep 19, 2023
1 parent 18e4190 commit 3703e4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chasten/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 3703e4f

Please sign in to comment.