aboutsummaryrefslogtreecommitdiff
path: root/discord/abc.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2017-05-10 21:36:49 -0400
committerRapptz <[email protected]>2017-05-10 21:36:49 -0400
commitbe2e706b2add43b88be8e5e480628cd64adbad60 (patch)
tree8624bbb302e18ccd2a3494bea4a23b9fa1a07486 /discord/abc.py
parent[commands] Converter.convert is always a coroutine. (diff)
downloaddiscord.py-be2e706b2add43b88be8e5e480628cd64adbad60.tar.xz
discord.py-be2e706b2add43b88be8e5e480628cd64adbad60.zip
Rename abc.Callable to abc.Connectable.
Diffstat (limited to 'discord/abc.py')
-rw-r--r--discord/abc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/abc.py b/discord/abc.py
index 6eb4fe92..e0f5a0c4 100644
--- a/discord/abc.py
+++ b/discord/abc.py
@@ -798,7 +798,7 @@ class Messageable(metaclass=abc.ABCMeta):
return HistoryIterator(self, limit=limit, before=before, after=after, around=around, reverse=reverse)
-class Callable(metaclass=abc.ABCMeta):
+class Connectable(metaclass=abc.ABCMeta):
__slots__ = ()
@abc.abstractmethod