Проблема С Преобразователем Времени

#python #discord #discord.py Вопрос: time_dict = {"h":3600, "s":1, "m":60, "d":86400} class TimeConverter(commands.Converter): async def convert(self, ctx, argument): matches = time_regex.findall(argument.lower()) time = 0 for v, k in matches: try: time…

Продолжить чтениеПроблема С Преобразователем Времени