mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-04-19 15:36:02 +00:00
Remove wrong import
This commit is contained in:
parent
686f233954
commit
015072b7fd
@ -24,7 +24,6 @@ DEALINGS IN THE SOFTWARE.
|
||||
|
||||
from __future__ import annotations
|
||||
from typing import Any, TYPE_CHECKING, AsyncIterator, List, Union, Optional
|
||||
from typing_extensions import reveal_type
|
||||
|
||||
from .object import Object
|
||||
|
||||
@ -217,7 +216,7 @@ class Reaction:
|
||||
|
||||
while limit > 0:
|
||||
retrieve = min(limit, 100)
|
||||
|
||||
|
||||
message = self.message
|
||||
guild = message.guild
|
||||
state = message._state
|
||||
@ -236,7 +235,7 @@ class Reaction:
|
||||
yield User(state=state, data=raw_user)
|
||||
|
||||
continue
|
||||
|
||||
|
||||
for raw_user in reversed(data):
|
||||
member_id = int(raw_user['id'])
|
||||
member = guild.get_member(member_id)
|
||||
|
Loading…
x
Reference in New Issue
Block a user