1
0
mirror of https://github.com/Rapptz/discord.py.git synced 2025-05-11 08:19:54 +00:00

Switch quotes to make docs example render properly

This commit is contained in:
Bluesy 2022-08-16 16:11:55 -07:00 committed by GitHub
parent 3aa3c36c4f
commit f12cdd5f90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2082,7 +2082,7 @@ def context_menu(
def describe(**parameters: Union[str, locale_str]) -> Callable[[T], T]:
r"""Describes the given parameters by their name using the key of the keyword argument
r'''Describes the given parameters by their name using the key of the keyword argument
as the name.
Example:
@ -2102,13 +2102,13 @@ def describe(**parameters: Union[str, locale_str]) -> Callable[[T], T]:
@app_commands.command()
async def ban(interaction: discord.Interaction, member: discord.Member):
\"\"\"Bans a member
"""Bans a member
Parameters
-----------
member: discord.Member
the member to ban
\"\"\"
"""
await interaction.response.send_message(f'Banned {member}')
Parameters
@ -2120,7 +2120,7 @@ def describe(**parameters: Union[str, locale_str]) -> Callable[[T], T]:
--------
TypeError
The parameter name is not found.
"""
'''
def decorator(inner: T) -> T:
if isinstance(inner, Command):