Skip to content
This repository has been archived by the owner on Dec 26, 2022. It is now read-only.

🚑 fix empty __all__'s #386

Merged
merged 2 commits into from
Jan 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions pincer/objects/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,16 +104,16 @@
from .voice.region import VoiceRegion

__all__ = (
"", "Activity", "ActivityAssets", "ActivityButton",
"ActivityEmoji", "ActivityFlags", "ActivityParty", "ActivitySecrets",
"ActivityTimestamp", "ActivityType", "AllowedMentionTypes",
"AllowedMentions", "AppCommand", "AppCommandInteractionDataOption",
"AppCommandOption", "AppCommandOptionChoice", "AppCommandOptionType",
"AppCommandType", "Application", "Attachment", "AuditEntryInfo",
"AuditLog", "AuditLogChange", "AuditLogEntry", "AuditLogEvent", "Ban",
"BaseMember", "CallbackType", "CategoryChannel", "Channel",
"ChannelMention", "ChannelPinsUpdateEvent", "ChannelType",
"ClientCommandStructure", "ClientStatus", "ComponentType", "Connection",
"Activity", "ActivityAssets", "ActivityButton", "ActivityEmoji",
"ActivityFlags", "ActivityParty", "ActivitySecrets", "ActivityTimestamp",
"ActivityType", "AllowedMentionTypes", "AllowedMentions", "AppCommand",
"AppCommandInteractionDataOption", "AppCommandOption",
"AppCommandOptionChoice", "AppCommandOptionType", "AppCommandType",
"Application", "Attachment", "AuditEntryInfo", "AuditLog",
"AuditLogChange", "AuditLogEntry", "AuditLogEvent", "Ban", "BaseMember",
"CallbackType", "CategoryChannel", "Channel", "ChannelMention",
"ChannelPinsUpdateEvent", "ChannelType", "ClientCommandStructure",
"ClientStatus", "ComponentType", "Connection",
"DefaultMessageNotificationLevel", "DefaultThrottleHandler",
"DiscordError", "Embed", "EmbedAuthor", "EmbedField", "EmbedFooter",
"EmbedImage", "EmbedProvider", "EmbedThumbnail", "EmbedVideo", "Emoji",
Expand Down
6 changes: 3 additions & 3 deletions pincer/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
)

__all__ = (
"", "APINullable", "APIObject", "ChannelProperty",
"CheckFunction", "Color", "Coro", "EventMgr", "GuildProperty", "MISSING",
"MissingType", "Snowflake", "Task", "TaskScheduler", "Timestamp", "chdir",
"APINullable", "APIObject", "ChannelProperty", "CheckFunction",
"Color", "Coro", "EventMgr", "GuildProperty", "MISSING", "MissingType",
"Snowflake", "Task", "TaskScheduler", "Timestamp", "chdir",
"choice_value_types", "get_index", "get_params",
"get_signature_and_params", "remove_none", "replace", "should_pass_cls",
"should_pass_ctx"
Expand Down