Add type attribute to Invite

This commit is contained in:
Andrin
2024-05-17 19:31:26 +02:00
committed by GitHub
parent b0024dc866
commit b9dc85e6f7
4 changed files with 36 additions and 2 deletions

View File

@ -823,6 +823,12 @@ class PollLayoutType(Enum):
default = 1
class InviteType(Enum):
guild = 0
group_dm = 1
friend = 2
def create_unknown_value(cls: Type[E], val: Any) -> E:
value_cls = cls._enum_value_cls_ # type: ignore # This is narrowed below
name = f'unknown_{val}'