diff --git a/asyncpraw/models/reddit/subreddit.py b/asyncpraw/models/reddit/subreddit.py index fc8d65d41..ef224efbf 100644 --- a/asyncpraw/models/reddit/subreddit.py +++ b/asyncpraw/models/reddit/subreddit.py @@ -2359,8 +2359,8 @@ def modmail_conversations( :param sort: Can be one of: mod, recent, unread, user (default: recent). :param state: Can be one of: all, archived, highlighted, inprogress, - mod, new, notifications, (default: all). "all" does not include - internal or archived conversations. + mod, new, notifications, or appeals, (default: all). "all" does not + include internal, archived, or appeals conversations. Keyword arguments are passed to :func:`.stream_generator`. @@ -2934,8 +2934,8 @@ async def bulk_read(self, other_subreddits=None, state=None): :param other_subreddits: A list of :class:`.Subreddit` instances for which to mark conversations (default: None). :param state: Can be one of: all, archived, highlighted, inprogress, - mod, new, notifications, (default: all). "all" does not include - internal or archived conversations. + mod, new, notifications, or appeals, (default: all). "all" does not + include internal, archived, or appeals conversations. :returns: A list of lazy :class:`.ModmailConversation` instances that were marked read. @@ -2973,8 +2973,8 @@ async def conversations( :param sort: Can be one of: mod, recent, unread, user (default: recent). :param state: Can be one of: all, archived, highlighted, inprogress, - mod, new, notifications, (default: all). "all" does not include - internal or archived conversations. + mod, new, notifications, or appeals, (default: all). "all" does not + include internal, archived, or appeals conversations. For example: @@ -3065,7 +3065,7 @@ async def unread_count(self): """Return unread conversation count by conversation state. At time of writing, possible states are: archived, highlighted, - inprogress, mod, new, notifications. + inprogress, mod, new, notifications, or appeals. :returns: A dict mapping conversation states to unread counts.