Browse Source

Fix TextChannel.archived_threads docstring

pull/7835/head
Puncher 3 years ago
committed by GitHub
parent
commit
0dbebf87b2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/channel.py

2
discord/channel.py

@ -751,7 +751,7 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable):
limit: Optional[int] = 100,
before: Optional[Union[Snowflake, datetime.datetime]] = None,
) -> AsyncIterator[Thread]:
"""Returns an :term:`asynchronous iterator` that iterates over all archived threads in the guild,
"""Returns an :term:`asynchronous iterator` that iterates over all archived threads in this text channel,
in order of decreasing ID for joined threads, and decreasing :attr:`Thread.archive_timestamp` otherwise.
You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads

Loading…
Cancel
Save