From d16e0cbe61995e6a76b533a2ee7979b475dcf310 Mon Sep 17 00:00:00 2001 From: NextChai <75498301+NextChai@users.noreply.github.com> Date: Tue, 17 May 2022 03:32:52 -0400 Subject: [PATCH] Add PartialIntegration to TargetType --- discord/audit_logs.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/discord/audit_logs.py b/discord/audit_logs.py index 22ce607cd..7df6cdad5 100644 --- a/discord/audit_logs.py +++ b/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, ]