File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
interactions/models/internal Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 66
77import discord_typings
88from aiohttp import FormData
9- from interactions .client .const import get_logger
9+ from interactions .client .const import get_logger , MISSING
1010from interactions .models .discord .components import BaseComponent
1111from interactions .models .discord .file import UPLOADABLE_TYPE
1212from interactions .models .discord .sticker import Sticker
@@ -165,6 +165,10 @@ class BaseContext(metaclass=abc.ABCMeta):
165165
166166 def __init__ (self , client : "interactions.Client" ) -> None :
167167 self .client = client
168+ self .author_id = MISSING
169+ self .channel_id = MISSING
170+ self .message_id = MISSING
171+ self .guild_id = MISSING
168172
169173 @property
170174 def guild (self ) -> typing .Optional ["interactions.Guild" ]:
You can’t perform that action at this time.
0 commit comments