@@ -414,7 +414,9 @@ def _update_inner_user(self, user: UserPayload) -> Optional[Tuple[User, User]]:
414
414
415
415
@property
416
416
def status (self ) -> Status :
417
- """:class:`Status`: The member's overall status. If the value is unknown, then it will be a :class:`str` instead."""
417
+ """:class:`Status`: The member's overall status.
418
+ If the value is unknown, then it will be a :class:`str` instead.
419
+ """
418
420
return try_enum (Status , self ._client_status [None ])
419
421
420
422
@property
@@ -675,7 +677,7 @@ async def edit(
675
677
+------------------------------+--------------------------------------+
676
678
| voice_channel | :attr:`Permissions.move_members` |
677
679
+------------------------------+--------------------------------------+
678
- | communication_disabled_until | :attr:`Permissions.manage_members` |
680
+ | communication_disabled_until | :attr:`Permissions.moderate_members` |
679
681
+------------------------------+--------------------------------------+
680
682
681
683
All parameters are optional.
@@ -779,7 +781,7 @@ async def timeout(self, until: Optional[datetime.datetime], reason: str = None)
779
781
780
782
Timeouts a member from the guild for the set duration.
781
783
782
- You must have the :attr:`~Permissions.manage_members ` permission to
784
+ You must have the :attr:`~Permissions.moderate_members ` permission to
783
785
timeout a member.
784
786
785
787
Parameters
@@ -803,7 +805,7 @@ async def remove_timeout(self, reason: str = None) -> None:
803
805
804
806
Removes the timeout from a member.
805
807
806
- You must have the :attr:`~Permissions.manage_members ` permission to
808
+ You must have the :attr:`~Permissions.moderate_members ` permission to
807
809
remove the timeout.
808
810
809
811
This is equivalent to calling :meth:`~.timeout` and passing ``None`` to :param:`~.timeout.until`.
0 commit comments