Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix/refactor: add missing imports and reorganize some alls #1672

Open
wants to merge 2 commits into
base: unstable
Choose a base branch
from
Open
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
40 changes: 27 additions & 13 deletions interactions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
ChannelSelectMenu,
ChannelType,
check,
ClientObject,
ClientUser,
Color,
COLOR_TYPES,
Expand All @@ -108,14 +109,17 @@
ContextMenu,
ContextMenuContext,
Converter,
cooldown,
Cooldown,
cooldown,
CooldownSystem,
CronTrigger,
CustomEmoji,
CustomEmojiConverter,
DateTrigger,
DefaultableSelectMenu,
DefaultNotificationLevel,
DefaultReaction,
DiscordObject,
DM,
dm_only,
DMChannel,
Expand All @@ -131,11 +135,13 @@
EmbedProvider,
Entitlement,
ExplicitContentFilterLevel,
ExponentialBackoffSystem,
Extension,
File,
FlatUIColors,
FlatUIColours,
ForumLayoutType,
ForumSortOrder,
get_components_ids,
global_autocomplete,
GlobalAutoComplete,
Expand Down Expand Up @@ -189,11 +195,14 @@
Invite,
InviteTargetType,
is_owner,
LeakyBucketSystem,
listen,
Listener,
LocalisedDesc,
LocalisedField,
LocalisedName,
LocalizedDesc,
LocalizedField,
LocalizedName,
MaterialColors,
MaterialColours,
Expand Down Expand Up @@ -258,6 +267,7 @@
ScheduledEventPrivacyLevel,
ScheduledEventStatus,
ScheduledEventType,
SelectDefaultValues,
ShortText,
slash_attachment_option,
slash_bool_option,
Expand All @@ -276,6 +286,7 @@
SlashCommandOption,
SlashCommandParameter,
SlashContext,
SlidingWindowSystem,
Snowflake,
Snowflake_Type,
SnowflakeConverter,
Expand Down Expand Up @@ -311,6 +322,7 @@
to_optional_snowflake,
to_snowflake,
to_snowflake_list,
TokenBucketSystem,
TYPE_ALL_ACTION,
TYPE_ALL_CHANNEL,
TYPE_ALL_TRIGGER,
Expand Down Expand Up @@ -338,11 +350,6 @@
WebhookMixin,
WebhookTypes,
WebSocketOPCode,
SlidingWindowSystem,
ExponentialBackoffSystem,
LeakyBucketSystem,
TokenBucketSystem,
ForumSortOrder,
)
from .api import events
from . import ext
Expand Down Expand Up @@ -409,6 +416,7 @@
"ChannelType",
"check",
"Client",
"ClientObject",
"ClientUser",
"Color",
"COLOR_TYPES",
Expand All @@ -418,8 +426,8 @@
"ComponentCommand",
"ComponentContext",
"ComponentType",
"ConsumeRest",
"const",
"ConsumeRest",
"context_menu",
"CONTEXT_MENU_NAME_LENGTH",
"ContextMenu",
Expand All @@ -428,16 +436,15 @@
"cooldown",
"Cooldown",
"CooldownSystem",
"SlidingWindowSystem",
"ExponentialBackoffSystem",
"LeakyBucketSystem",
"TokenBucketSystem",
"CronTrigger",
"CustomEmoji",
"CustomEmojiConverter",
"DateTrigger",
"DefaultableSelectMenu",
"DefaultNotificationLevel",
"DefaultReaction",
"DISCORD_EPOCH",
"DiscordObject",
"DM",
"dm_only",
"DMChannel",
Expand All @@ -460,13 +467,14 @@
"errors",
"events",
"ExplicitContentFilterLevel",
"ExponentialBackoffSystem",
"ext",
"Extension",
"File",
"FlatUIColors",
"FlatUIColours",
"ForumSortOrder",
"ForumLayoutType",
"ForumSortOrder",
"get_components_ids",
"get_logger",
"global_autocomplete",
Expand Down Expand Up @@ -524,11 +532,14 @@
"InviteTargetType",
"is_owner",
"kwarg_spam",
"LeakyBucketSystem",
"listen",
"Listener",
"LocalisedDesc",
"LocalisedField",
"LocalisedName",
"LocalizedDesc",
"LocalizedField",
"LocalizedName",
"logger_name",
"MaterialColors",
Expand All @@ -554,8 +565,8 @@
"MessageReference",
"MessageType",
"MFALevel",
"Missing",
"MISSING",
"Missing",
"Modal",
"modal_callback",
"ModalCommand",
Expand Down Expand Up @@ -600,6 +611,7 @@
"ScheduledEventStatus",
"ScheduledEventType",
"SELECT_MAX_NAME_LENGTH",
"SelectDefaultValues",
"SELECTS_MAX_OPTIONS",
"Sentinel",
"ShortText",
Expand All @@ -625,6 +637,7 @@
"SlashCommandOption",
"SlashCommandParameter",
"SlashContext",
"SlidingWindowSystem",
"smart_cache",
"Snowflake",
"Snowflake_Type",
Expand Down Expand Up @@ -663,6 +676,7 @@
"to_optional_snowflake",
"to_snowflake",
"to_snowflake_list",
"TokenBucketSystem",
"TYPE_ALL_ACTION",
"TYPE_ALL_CHANNEL",
"TYPE_ALL_TRIGGER",
Expand Down
70 changes: 36 additions & 34 deletions interactions/client/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,41 +47,9 @@
underline,
)
from .text_utils import mentions
from .deserialise_app_cmds import deserialize_app_cmds

__all__ = (
"define",
"docs",
"field",
"str_validator",
"NullCache",
"TTLCache",
"TTLItem",
"list_converter",
"optional",
"timestamp_converter",
"FastJson",
"get_args",
"get_first_word",
"response_decode",
"escape_mentions",
"find",
"find_all",
"get",
"get_all",
"get_event_name",
"get_object_name",
"get_parameters",
"maybe_coroutine",
"nulled_boolean_get",
"wrap_partial",
"dict_filter",
"dict_filter_none",
"export_converter",
"get_file_mimetype",
"no_export_meta",
"unpack_helper",
"to_dict",
"to_image_data",
"ansi_block",
"ansi_escape",
"ansi_format",
Expand All @@ -93,14 +61,48 @@
"bold",
"code_block",
"colors",
"define",
"deserialize_app_cmds",
"dict_filter",
"dict_filter_none",
"docs",
"escape_mentions",
"export_converter",
"FastJson",
"field",
"find",
"find_all",
"get",
"get_all",
"get_args",
"get_event_name",
"get_file_mimetype",
"get_first_word",
"get_object_name",
"get_parameters",
"inline_code",
"italic",
"link_in_embed",
"list_converter",
"maybe_coroutine",
"mentions",
"no_embed_link",
"no_export_meta",
"NullCache",
"nulled_boolean_get",
"optional",
"quote_line",
"response_decode",
"spoiler",
"str_validator",
"strikethrough",
"styles",
"timestamp_converter",
"to_dict",
"to_image_data",
"TTLCache",
"TTLItem",
"underline",
"mentions",
"unpack_helper",
"wrap_partial",
)
Loading
Loading