pronoun-o-matic/pronoun_update.py

9 lines
198 B
Python
Raw Normal View History

2022-06-04 22:18:32 +02:00
class PronounUpdate:
pronouns: str
def __init__(self, pronouns: str):
self.pronouns = pronouns
def replace_pronouns_in_bio(self, bio: str) -> str:
return self.pronouns