3434from datetime import datetime
3535from types import SimpleNamespace
3636
37- from pkg_resources import parse_version
38-
3937import discord
4038from discord .ext import commands
4139from discord .ext .commands .view import StringView
4644from colorama import init , Fore , Style
4745from emoji import UNICODE_EMOJI
4846from motor .motor_asyncio import AsyncIOMotorClient
47+ from pkg_resources import parse_version
4948
5049from core .changelog import Changelog
5150from core .clients import ApiClient , PluginDatabaseClient
@@ -480,7 +479,7 @@ async def process_modmail(self, message: discord.Message) -> None:
480479 logger .warning (
481480 "The account age limit needs to be a "
482481 "ISO-8601 duration formatted duration string "
483- f 'greater than 0 days, not "%s".' ,
482+ 'greater than 0 days, not "%s".' ,
484483 str (account_age ),
485484 )
486485 del self .config .cache ["account_age" ]
@@ -496,7 +495,7 @@ async def process_modmail(self, message: discord.Message) -> None:
496495 logger .warning (
497496 "The guild join age limit needs to be a "
498497 "ISO-8601 duration formatted duration string "
499- f 'greater than 0 days, not "%s".' ,
498+ 'greater than 0 days, not "%s".' ,
500499 str (guild_age ),
501500 )
502501 del self .config .cache ["guild_age" ]
0 commit comments