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)