Fix issues with imports causing NameErrors
This commit is contained in:
@ -63,6 +63,8 @@ if TYPE_CHECKING:
|
||||
from .embeds import Embed
|
||||
from .message import Message, MessageReference
|
||||
|
||||
SnowflakeTime = Union["Snowflake", datetime]
|
||||
|
||||
MISSING = utils.MISSING
|
||||
|
||||
|
||||
@ -98,8 +100,6 @@ class Snowflake(Protocol):
|
||||
""":class:`datetime.datetime`: Returns the model's creation time as an aware datetime in UTC."""
|
||||
raise NotImplementedError
|
||||
|
||||
SnowflakeTime = Union[Snowflake, datetime]
|
||||
|
||||
@runtime_checkable
|
||||
class User(Snowflake, Protocol):
|
||||
"""An ABC that details the common operations on a Discord user.
|
||||
|
Reference in New Issue
Block a user