Skip to content
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
1 change: 1 addition & 0 deletions discord/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ class ChannelType(Enum):
stage_voice = 13
directory = 14
forum = 15
media = 16

def __str__(self):
return self.name
Expand Down
2 changes: 1 addition & 1 deletion discord/types/channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class PermissionOverwrite(TypedDict):
deny: str


ChannelType = Literal[0, 1, 2, 3, 4, 5, 10, 11, 12, 13]
ChannelType = Literal[0, 1, 2, 3, 4, 5, 10, 11, 12, 13, 14, 15, 16]


class _BaseChannel(TypedDict):
Expand Down
Loading