Skip to content

Commit

Permalink
Add missing __all__ to discord/bot.py
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeWithSwastik committed Nov 5, 2021
1 parent e7aaeaf commit b05b083
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions discord/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@
CoroFunc = Callable[..., Coroutine[Any, Any, Any]]
CFT = TypeVar('CFT', bound=CoroFunc)

__all__ = (
'ApplicationCommandMixin',
'Bot',
'AutoShardedBot',
)

class ApplicationCommandMixin:
"""A mixin that implements common functionality for classes that need
application command compatibility.
Expand Down

0 comments on commit b05b083

Please sign in to comment.