diff --git a/asyncpraw/models/reddit/mixins/inboxtoggleable.py b/asyncpraw/models/reddit/mixins/inboxtoggleable.py index fb2019af..10445f4d 100644 --- a/asyncpraw/models/reddit/mixins/inboxtoggleable.py +++ b/asyncpraw/models/reddit/mixins/inboxtoggleable.py @@ -8,6 +8,10 @@ class InboxToggleableMixin: async def disable_inbox_replies(self): """Disable inbox replies for the item. + .. note:: + + This can only apply to items created by the authenticated user. + Example usage: .. code-block:: python @@ -30,6 +34,10 @@ async def disable_inbox_replies(self): async def enable_inbox_replies(self): """Enable inbox replies for the item. + .. note:: + + This can only apply to items created by the authenticated user. + Example usage: .. code-block:: python