Skip to content

Commit 5ff45e4

Browse files
authored
Merge branch 'feature/slash' into conflict
2 parents 2858bd1 + d850ed4 commit 5ff45e4

File tree

19 files changed

+1990
-596
lines changed

19 files changed

+1990
-596
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ docs/crowdin.py
1414
*.jpg
1515
*.flac
1616
*.mo
17+
.idea/

discord/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
from .threads import *
6262
from .bot import *
6363
from .app import *
64+
from .cog import Cog
6465
from .welcome_screen import *
6566

6667

discord/abc.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
'GuildChannel',
6363
'Messageable',
6464
'Connectable',
65+
'Mentionable'
6566
)
6667

6768
T = TypeVar('T', bound=VoiceProtocol)
@@ -1141,6 +1142,7 @@ class Messageable:
11411142
- :class:`~discord.Member`
11421143
- :class:`~discord.ext.commands.Context`
11431144
- :class:`~discord.Thread`
1145+
- :class:`~discord.ApplicationContext`
11441146
"""
11451147

11461148
__slots__ = ()
@@ -1690,4 +1692,4 @@ async def connect(
16901692

16911693
class Mentionable:
16921694
# TODO: documentation, methods if needed
1693-
pass
1695+
pass

0 commit comments

Comments
 (0)