From 89456022cf952a0d094d3ed438e279db02535632 Mon Sep 17 00:00:00 2001 From: Nadir Chowdhury Date: Wed, 7 Apr 2021 07:30:32 +0100 Subject: Add `__all__` to remaining modules --- discord/abc.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'discord/abc.py') diff --git a/discord/abc.py b/discord/abc.py index 0130aa70..18e8a062 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -41,6 +41,15 @@ from .file import File from .voice_client import VoiceClient, VoiceProtocol from . import utils +__all__ = ( + 'Snowflake', + 'User', + 'PrivateChannel', + 'GuildChannel', + 'Messageable', + 'Connectable', +) + if TYPE_CHECKING: from datetime import datetime -- cgit v1.2.3