Browse Source
Document that docstrings can be used to document parameters
pull/8347/head
Bluesy
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
17 additions and
0 deletions
-
discord/app_commands/commands.py
|
|
@ -2094,6 +2094,23 @@ def describe(**parameters: Union[str, locale_str]) -> Callable[[T], T]: |
|
|
|
async def ban(interaction: discord.Interaction, member: discord.Member): |
|
|
|
await interaction.response.send_message(f'Banned {member}') |
|
|
|
|
|
|
|
Alternatively, you can describe parameters using Google, Sphinx, or Numpy style docstrings. |
|
|
|
|
|
|
|
Example: |
|
|
|
|
|
|
|
.. code-block:: python3 |
|
|
|
|
|
|
|
@app_commands.command() |
|
|
|
async def ban(interaction: discord.Interaction, member: discord.Member): |
|
|
|
\"\"\"Bans a member |
|
|
|
|
|
|
|
Parameters |
|
|
|
----------- |
|
|
|
member: discord.Member |
|
|
|
the member to ban |
|
|
|
\"\"\" |
|
|
|
await interaction.response.send_message(f'Banned {member}') |
|
|
|
|
|
|
|
Parameters |
|
|
|
----------- |
|
|
|
\*\*parameters: Union[:class:`str`, :class:`locale_str`] |
|
|
|