This commit is contained in:
grey-cat-1908 2022-04-07 19:33:55 +03:00
parent 85d768c37b
commit c5327d011b
3 changed files with 4 additions and 2 deletions

View file

@ -2,7 +2,7 @@
# Full MIT License can be found in `LICENSE.txt` at the project root.
from .client import *
from .models import Intents, Snowflake
from .models import *
from .exceptions import *
__package__ = "melisa"

View file

@ -4,3 +4,4 @@
from .app import *
from .guild import *
from .user import *
from .message import *

View file

@ -7,6 +7,7 @@ from dataclasses import dataclass
from enum import IntEnum
from typing import List, Any, Optional
from ... import Thread
from ...utils import Snowflake, Timestamp
from ...utils import APIModelBase
from ...utils.types import APINullable
@ -190,7 +191,7 @@ class Message(APIModelBase):
message_reference: APINullable[List] = None
flags: APINullable[int] = None
interaction: APINullable[List] = None
thread: APINullable[List[Any]] = None
thread: APINullable[List[Thread]] = None
components: APINullable[List] = None
sticker_items: APINullable[List] = None
stickers: APINullable[List] = None