diff --git a/disagreement/client.py b/disagreement/client.py index 11694bb..57c38cc 100644 --- a/disagreement/client.py +++ b/disagreement/client.py @@ -123,14 +123,10 @@ class Client: self._closed: bool = False self._ready_event: asyncio.Event = asyncio.Event() - self.application_id: Optional[Snowflake] = None # For Application Commands self.user: Optional["User"] = ( None # The bot's own user object, populated on READY ) - # Initialize AppCommandHandler - self.app_command_handler: AppCommandHandler = AppCommandHandler(client=self) - # Internal Caches self._guilds: Dict[Snowflake, "Guild"] = {} self._channels: Dict[Snowflake, "Channel"] = (