diff options
| author | Nadir Chowdhury <[email protected]> | 2021-04-07 07:30:32 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-07 02:30:32 -0400 |
| commit | 89456022cf952a0d094d3ed438e279db02535632 (patch) | |
| tree | 216671c8bfeb6c861236dc42ba82a7b08cf52f69 /discord/__init__.py | |
| parent | Add Embed.__bool__ (diff) | |
| download | discord.py-89456022cf952a0d094d3ed438e279db02535632.tar.xz discord.py-89456022cf952a0d094d3ed438e279db02535632.zip | |
Add `__all__` to remaining modules
Diffstat (limited to 'discord/__init__.py')
| -rw-r--r-- | discord/__init__.py | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/discord/__init__.py b/discord/__init__.py index 6ed1ec6a..dbbb54c9 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -20,41 +20,41 @@ __path__ = __import__('pkgutil').extend_path(__path__, __name__) from collections import namedtuple import logging -from .client import Client -from .appinfo import AppInfo -from .user import User, ClientUser -from .emoji import Emoji -from .partial_emoji import PartialEmoji +from .client import * +from .appinfo import * +from .user import * +from .emoji import * +from .partial_emoji import * from .activity import * from .channel import * -from .guild import Guild +from .guild import * from .flags import * -from .member import Member, VoiceState +from .member import * from .message import * -from .asset import Asset +from .asset import * from .errors import * -from .permissions import Permissions, PermissionOverwrite -from .role import Role, RoleTags -from .file import File -from .colour import Color, Colour -from .integrations import Integration, IntegrationAccount -from .invite import Invite, PartialInviteChannel, PartialInviteGuild -from .template import Template -from .widget import Widget, WidgetMember, WidgetChannel -from .object import Object -from .reaction import Reaction +from .permissions import * +from .role import * +from .file import * +from .colour import * +from .integrations import * +from .invite import * +from .template import * +from .widget import * +from .object import * +from .reaction import * from . import utils, opus, abc from .enums import * -from .embeds import Embed -from .mentions import AllowedMentions -from .shard import AutoShardedClient, ShardInfo +from .embeds import * +from .mentions import * +from .shard import * from .player import * from .webhook import * -from .voice_client import VoiceClient, VoiceProtocol -from .audit_logs import AuditLogChanges, AuditLogEntry, AuditLogDiff +from .voice_client import * +from .audit_logs import * from .raw_models import * from .team import * -from .sticker import Sticker +from .sticker import * from .interactions import * VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial') |