diff options
-rw-r--r-- | bot/exts/moderation/alts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/alts.py b/bot/exts/moderation/alts.py index bdee76c94..4cab1534d 100644 --- a/bot/exts/moderation/alts.py +++ b/bot/exts/moderation/alts.py @@ -37,7 +37,7 @@ class AlternateAccounts(commands.Cog): return str(error.response_json) return error.response_text - async def alts_to_string(self, alts: list[dict[str: str | int | list[int]]]) -> list[str]: + async def alts_to_string(self, alts: list[dict]) -> list[str]: """Convert a list of alts to a list of string representations.""" lines = [] guild = self.bot.get_guild(self.bot.guild_id) |