From a06d00f554a8f7493bfad13041c0e00231502af6 Mon Sep 17 00:00:00 2001 From: Sebastian Law <44045823+SebbyLaw@users.noreply.github.com> Date: Wed, 24 Mar 2021 05:22:50 -0700 Subject: [PATCH] Make `await` text appear in async Member method docs --- discord/member.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/discord/member.py b/discord/member.py index 8e98db6a4..0b6ef3237 100644 --- a/discord/member.py +++ b/discord/member.py @@ -24,6 +24,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +import inspect import itertools import sys from operator import attrgetter @@ -106,8 +107,13 @@ def flatten_user(cls): # It probably breaks something in Sphinx. # probably a member function by now def generate_function(x): - def general(self, *args, **kwargs): - return getattr(self._user, x)(*args, **kwargs) + # We want sphinx to properly show coroutine functions as coroutines + if inspect.iscoroutinefunction(value): + async def general(self, *args, **kwargs): + return await getattr(self._user, x)(*args, **kwargs) + else: + def general(self, *args, **kwargs): + return getattr(self._user, x)(*args, **kwargs) general.__name__ = x return general