Skip to content

Commit b05b083

Browse files
Add missing __all__ to discord/bot.py
1 parent e7aaeaf commit b05b083

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

discord/bot.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@
6464
CoroFunc = Callable[..., Coroutine[Any, Any, Any]]
6565
CFT = TypeVar('CFT', bound=CoroFunc)
6666

67+
__all__ = (
68+
'ApplicationCommandMixin',
69+
'Bot',
70+
'AutoShardedBot',
71+
)
72+
6773
class ApplicationCommandMixin:
6874
"""A mixin that implements common functionality for classes that need
6975
application command compatibility.

0 commit comments

Comments
 (0)