Skip to content

Commit 4b2a358

Browse files
authored
use lower
1 parent 5055da2 commit 4b2a358

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bot/plugins/pronouns.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ async def _get_user_pronouns(username: str) -> tuple[str, str] | None:
8080
second = all_pronouns[maybe_alt_pronoun_id]['subject'].lower()
8181
else:
8282
# second is main object if they don't
83-
second = main_pronoun_data['object'].casefold()
83+
second = main_pronoun_data['object'].lower()
8484

8585
return (first, second)
8686

0 commit comments

Comments
 (0)