From a19342171501a4ff3982405302e2e29edff81761 Mon Sep 17 00:00:00 2001 From: shiftinv Date: Thu, 22 Jun 2023 20:23:33 +0200 Subject: [PATCH] docs: clarify `Member.current_timeout` expiry --- disnake/member.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/disnake/member.py b/disnake/member.py index f3ff9008f7..25886079eb 100644 --- a/disnake/member.py +++ b/disnake/member.py @@ -695,7 +695,9 @@ def voice(self) -> Optional[VoiceState]: @property def current_timeout(self) -> Optional[datetime.datetime]: - """Optional[:class:`datetime.datetime`]: Returns the datetime when the timeout expires, if any. + """Optional[:class:`datetime.datetime`]: Returns the datetime when the timeout expires. + + If the member is not timed out or the timeout has already expired, returns ``None``. .. versionadded:: 2.3 """