aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2024-04-30 08:46:27 +0100
committerGravatar Chris Lovering <[email protected]>2024-05-23 21:50:17 +0100
commitdaeb4bded094d794cba3067d8cc995fab3a4fbe4 (patch)
tree38746198ad96b777479d7aeefdcc411f5b552b75
parentfixup: simplify type annotation (diff)
fixup: remove british accent
-rw-r--r--bot/exts/info/information.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/information.py b/bot/exts/info/information.py
index 482b1efba..e02559220 100644
--- a/bot/exts/info/information.py
+++ b/bot/exts/info/information.py
@@ -342,7 +342,7 @@ class Information(Cog):
return embed
async def user_alt_count(self, user: MemberOrUser) -> tuple[str, int | str]:
- """Get the number oif alts for the given member."""
+ """Get the number of alts for the given member."""
resp = await self.bot.api_client.get(f"bot/users/{user.id}")
return ("Associated accounts", len(resp["alts"]) or "No associated accounts")