Skip to content

Commit 394b53d

Browse files
committed
Pre-push.
1 parent 3b4f4bf commit 394b53d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

discord_slash/context.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -679,13 +679,12 @@ def __init__(
679679
self.target_author = discord.Member(
680680
data=self._resolved["members"][_auth],
681681
state=self.bot._connection,
682-
guild=self.guild
682+
guild=self.guild,
683683
)
684684
else:
685685
_auth = [auth for auth in self._resolved["users"]][0]
686686
self.target_author = discord.User(
687-
data=self._resolved["users"][_auth],
688-
state=self.bot._connection
687+
data=self._resolved["users"][_auth], state=self.bot._connection
689688
)
690689
except KeyError: # noqa
691690
pass

0 commit comments

Comments
 (0)