Browse Source

Minor documentation fixes

pull/2520/head
Rapptz 5 years ago
parent
commit
17f343b03e
  1. 2
      discord/client.py
  2. 4
      discord/utils.py

2
discord/client.py

@ -169,7 +169,7 @@ class Client:
- :func:`on_member_join`
- :func:`on_member_remove`
- Typing events will be disabled (:func:`on_typing_start`).
- Typing events will be disabled (:func:`on_typing`).
- If ``fetch_offline_members`` is set to ``False`` then the user cache will not exist.
This makes it difficult or impossible to do many things, for example:

4
discord/utils.py

@ -346,14 +346,14 @@ async def sleep_until(when, result=None):
If the time supplied is in the past this function will yield instantly.
.. versionadded:: 1.3
Parameters
-----------
when: :class:`datetime.datetime`
The timestamp in which to sleep until.
result: Any
If provided is returned to the caller when the coroutine completes.
.. versionadded:: 1.3
"""
if when.tzinfo is None:
when = when.replace(tzinfo=datetime.timezone.utc)

Loading…
Cancel
Save