Browse Source
Add PartialIntegration to TargetType
pull/8048/head
NextChai
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
13 additions and
1 deletions
-
discord/audit_logs.py
|
|
@ -70,7 +70,19 @@ if TYPE_CHECKING: |
|
|
|
from .app_commands import AppCommand |
|
|
|
|
|
|
|
TargetType = Union[ |
|
|
|
Guild, abc.GuildChannel, Member, User, Role, Invite, Emoji, StageInstance, GuildSticker, Thread, Object, None |
|
|
|
Guild, |
|
|
|
abc.GuildChannel, |
|
|
|
Member, |
|
|
|
User, |
|
|
|
Role, |
|
|
|
Invite, |
|
|
|
Emoji, |
|
|
|
StageInstance, |
|
|
|
GuildSticker, |
|
|
|
Thread, |
|
|
|
Object, |
|
|
|
PartialIntegration, |
|
|
|
None, |
|
|
|
] |
|
|
|
|
|
|
|
|
|
|
|