diff options
Diffstat (limited to 'discord/abc.py')
| -rw-r--r-- | discord/abc.py | 4 |
1 files changed, 2 insertions, 2 deletions
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. |