Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
DenverCoder1 committed Oct 2, 2022
2 parents 335ae53 + c1b4d99 commit 80dc799
Show file tree
Hide file tree
Showing 117 changed files with 2,407 additions and 1,781 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ci:
repos:
- repo: https://github.com/psf/black
rev: 22.6.0
rev: 22.8.0
hooks:
- id: black
name: Running black in all files.
Expand Down
2 changes: 1 addition & 1 deletion discord/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
__author__ = "tag-epic & Rapptz"
__license__ = "MIT"
__copyright__ = "Copyright 2015-present Rapptz & tag-epic"
__version__ = "2.2.0a"
__version__ = "2.3.0a"

__path__ = __import__("pkgutil").extend_path(__path__, __name__)
15 changes: 6 additions & 9 deletions discord/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,26 +28,23 @@
"""

from nextcord.enums import (
TYPE_CHECKING,
ActivityType,
Any,
AuditLogAction,
AuditLogActionCategory,
ButtonStyle,
ChannelType,
ClassVar,
ComponentType,
ContentFilter,
DefaultAvatar,
Dict,
Enum,
EnumMeta,
ExpireBehavior,
ExpireBehaviour,
IntEnum,
InteractionResponseType,
InteractionType,
InviteTarget,
List,
MessageType,
NotificationLevel,
NSFWLevel,
Expand All @@ -57,25 +54,25 @@
Status,
StickerFormatType,
StickerType,
StrEnum,
T,
TeamMembershipState,
Type,
TypeVar,
UnknownEnumValue,
UserFlags,
VerificationLevel,
VideoQualityMode,
VoiceRegion,
WebhookType,
_create_value_cls,
_is_descriptor,
create_unknown_value,
namedtuple,
try_enum,
types,
)

__all__ = (
"Enum",
"IntEnum",
"StrEnum",
"UnknownEnumValue",
"ChannelType",
"MessageType",
"VoiceRegion",
Expand Down
6 changes: 6 additions & 0 deletions discord/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@
normalise_optional_params,
oauth_url,
overload,
parse_raw_channel_mentions,
parse_raw_mentions,
parse_raw_role_mentions,
parse_time,
re,
remove_markdown,
Expand Down Expand Up @@ -138,6 +141,9 @@
"remove_markdown",
"escape_markdown",
"escape_mentions",
"parse_raw_mentions",
"parse_raw_role_mentions",
"parse_raw_channel_mentions",
"as_chunks",
"format_dt",
)
Loading

0 comments on commit 80dc799

Please sign in to comment.