Browse Source

Switch quotes to make docs example render properly

pull/8349/head
Bluesy 3 years ago
committed by GitHub
parent
commit
f12cdd5f90
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      discord/app_commands/commands.py

8
discord/app_commands/commands.py

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

Loading…
Cancel
Save