misc(aurora): changed aurora.utilities.utils.get_bool_emoji to use match/case instead of if/else

This commit is contained in:
Seaswimmer 2024-06-04 00:04:46 -04:00
parent 9b0f977016
commit 1c6d2456ed
Signed by untrusted user: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -152,10 +152,12 @@ async def send_evidenceformat(interaction: Interaction, moderation_id: int) -> N
def get_bool_emoji(value: Optional[bool]) -> str:
"""Returns a unicode emoji based on a boolean value."""
if value is True:
match value:
case True:
return "\N{WHITE HEAVY CHECK MARK}"
if value is False:
case False:
return "\N{NO ENTRY SIGN}"
case _:
return "\N{BLACK QUESTION MARK ORNAMENT}\N{VARIATION SELECTOR-16}"