Fix typo with archived_threads iterator leading to AttributeError

This commit is contained in:
Rapptz
2021-06-08 07:25:40 -04:00
parent 7c6724fdd7
commit cb9a506686
+1 -1
View File
@@ -705,7 +705,7 @@ class ArchivedThreadIterator(_AsyncIterator['Thread']):
elif private: elif private:
self.endpoint = self.http.get_private_archived_threads self.endpoint = self.http.get_private_archived_threads
else: else:
self.endpoint = self.http.get_archived_threads self.endpoint = self.http.get_public_archived_threads
self.queue: asyncio.Queue[Thread] = asyncio.Queue() self.queue: asyncio.Queue[Thread] = asyncio.Queue()
self.has_more: bool = True self.has_more: bool = True