diff --git a/botpy/__init__.py b/botpy/__init__.py index f8fede2..3c0514e 100644 --- a/botpy/__init__.py +++ b/botpy/__init__.py @@ -2,5 +2,6 @@ from .logging import get_logger from .client import * from .flags import * +from .message import * logger = get_logger() diff --git a/botpy/types/message.py b/botpy/types/message.py index 88c5f9c..cd77591 100644 --- a/botpy/types/message.py +++ b/botpy/types/message.py @@ -16,7 +16,6 @@ class Thumbnail(TypedDict): class EmbedField(TypedDict): name: str - value: str class Embed(TypedDict, total=False):