def fix_accessibility_emojis(text: str) -> str:
replacements = {
"🟢": "✅",
"🟠": "⚠️",
"🟡": "⚠️",
"🔴": "⛔",
"⚫": "⛔",
}
for bad_emoji, good_emoji in replacements.items():
text = text.replace(bad_emoji, good_emoji)
return text
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)