Skip to content

Commit

Permalink
Remove BaseCommand from docstrings / docs
Browse files Browse the repository at this point in the history
  • Loading branch information
janluke committed May 8, 2022
1 parent ec24cdd commit 0cd33fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cloup/_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class Command(ConstraintMixin, OptionGroupMixin, click.Command):
- :class:`ConstraintMixin`
- :class:`OptionGroupMixin`
- :class:`BaseCommand` -> :class:`click.Command`
- :class:`click.Command`
Besides other things, this class also:
Expand Down Expand Up @@ -127,7 +127,7 @@ class Group(SectionMixin, Command, click.Group):
Refer to superclasses for the documentation of all accepted parameters:
- :class:`SectionMixin`
- :class:`BaseCommand` -> :class:`click.Command`
- :class:`Command`
- :class:`click.Group`
Apart from superclasses arguments, the following is the only additional parameter:
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/aliases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Help output of the subcommand

.. attention::
Aliases are shown **only** in the ``--help`` output of subcommands that
extends ``cloup.BaseCommand``. So, normal ``click.Command`` won't do it.
extends ``cloup.Command``. So, normal ``click.Command`` won't do it.

.. code-block:: text
:emphasize-lines: 2
Expand Down

0 comments on commit 0cd33fc

Please sign in to comment.