Skip to content

Commit 730778b

Browse files
committed
🚨 Fix linter warns
1 parent 6ab96f6 commit 730778b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

discord/message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@ async def _from_data(
10881088
if data.get("member"):
10891089
try:
10901090
# Update member reference
1091-
self.author._update_from_message(data["member"]) # type: ignore # noqa: F821 # TODO: member is unbound
1091+
self.author._update_from_message(data["member"])
10921092
except AttributeError:
10931093
# It's a user here
10941094
# TODO: consider adding to cache here

0 commit comments

Comments
 (0)