From bd75e395161962c6128cac49f9505c7c748ec125 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 4071a1eb0..89f5b88cc 100644 --- a/discord/audit_logs.py +++ b/discord/audit_logs.py @@ -67,7 +67,19 @@ if TYPE_CHECKING: from .threads import Thread 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, ]