From 5fa64e83e0ba8f3e49047d6914b4ecb24fb20ffc Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 13 May 2021 10:24:28 +1000 Subject: Fix issues with imports causing NameErrors --- discord/abc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'discord/abc.py') diff --git a/discord/abc.py b/discord/abc.py index a785e35d..5471b336 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -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. -- cgit v1.2.3