Add PartialIntegration to TargetType

This commit is contained in:
NextChai 2022-05-17 03:32:52 -04:00 committed by GitHub
parent 544bb1e237
commit d16e0cbe61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,
]