From 6c67910fa9bc8663ee683d772209daeb4651f4ea Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sat, 8 Jul 2017 21:33:04 -0400 Subject: [PATCH] Remove Invite.accept. --- discord/invite.py | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/discord/invite.py b/discord/invite.py index 3fa860c72..e40817a22 100644 --- a/discord/invite.py +++ b/discord/invite.py @@ -131,25 +131,6 @@ class Invite(Hashable): """A property that retrieves the invite URL.""" return 'http://discord.gg/' + self.code - @asyncio.coroutine - def accept(self): - """|coro| - - Accepts the instant invite and adds you to the guild - the invite is in. - - Raises - ------- - HTTPException - Accepting the invite failed. - NotFound - The invite is invalid or expired. - Forbidden - You are a bot user and cannot use this endpoint. - """ - - yield from self._state.http.accept_invite(self.code) - @asyncio.coroutine def delete(self, *, reason=None): """|coro|