1
0
mirror of https://github.com/Rapptz/discord.py.git synced 2025-05-16 10:49:24 +00:00

Fix NameError due to missing import

This commit is contained in:
Rapptz 2022-02-20 11:04:27 -05:00
parent e56f64218a
commit f2600995e8

@ -62,6 +62,7 @@ from .guild import Guild
from .mixins import Hashable
from .sticker import StickerItem
from .threads import Thread
from .channel import PartialMessageable
if TYPE_CHECKING:
from .types.message import (
@ -85,7 +86,7 @@ if TYPE_CHECKING:
from .abc import GuildChannel, PartialMessageableChannel, MessageableChannel
from .components import Component
from .state import ConnectionState
from .channel import TextChannel, GroupChannel, DMChannel, PartialMessageable
from .channel import TextChannel, GroupChannel, DMChannel
from .mentions import AllowedMentions
from .user import User
from .role import Role