seeing if this works now
This commit is contained in:
parent
195b0e4416
commit
3f57d81fb5
1 changed files with 11 additions and 1 deletions
12
info/info.py
12
info/info.py
|
@ -1,15 +1,25 @@
|
||||||
|
import datetime
|
||||||
|
import time
|
||||||
|
from enum import Enum
|
||||||
|
from random import randint, choice
|
||||||
|
from typing import Final
|
||||||
|
import urllib.parse
|
||||||
|
import aiohttp
|
||||||
import discord
|
import discord
|
||||||
from redbot.core import commands
|
from redbot.core import commands
|
||||||
from redbot.core.bot import Red
|
from redbot.core.bot import Red
|
||||||
from redbot.core.i18n import Translator, cog_i18n
|
from redbot.core.i18n import Translator, cog_i18n
|
||||||
from datetime import datetime
|
from redbot.core.utils.menus import menu
|
||||||
import re
|
import re
|
||||||
from redbot.core.utils.chat_formatting import (
|
from redbot.core.utils.chat_formatting import (
|
||||||
bold,
|
bold,
|
||||||
|
escape,
|
||||||
|
italics,
|
||||||
humanize_number,
|
humanize_number,
|
||||||
humanize_timedelta,
|
humanize_timedelta,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
_ = T_ = Translator("General", __file__)
|
_ = T_ = Translator("General", __file__)
|
||||||
|
|
||||||
@cog_i18n(_)
|
@cog_i18n(_)
|
||||||
|
|
Loading…
Reference in a new issue