diff options
| author | Sebastian Law <[email protected]> | 2021-03-29 20:52:14 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-03-29 23:52:14 -0400 |
| commit | d6501159e7b765a526c94b4d83524c127ad4b22f (patch) | |
| tree | 3bf20620c7ee6d9e5851e6f5a2b5009c2caf62c6 /discord/member.py | |
| parent | [commands] Add support for stripping whitespace after the prefix (diff) | |
| download | discord.py-d6501159e7b765a526c94b4d83524c127ad4b22f.tar.xz discord.py-d6501159e7b765a526c94b4d83524c127ad4b22f.zip | |
[docs] copy signature from overridden and inherited methods
Diffstat (limited to 'discord/member.py')
| -rw-r--r-- | discord/member.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/member.py b/discord/member.py index 0b6ef323..a72e9945 100644 --- a/discord/member.py +++ b/discord/member.py @@ -119,7 +119,7 @@ def flatten_user(cls): return general func = generate_function(attr) - func.__doc__ = value.__doc__ + func = utils.copy_doc(value)(func) setattr(cls, attr, func) return cls |