Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add type hints to manim.cli module #3988

Merged
merged 12 commits into from
Nov 4, 2024
Prev Previous commit
Next Next commit
click.Command.command -> cloup.Group.command
  • Loading branch information
chopan050 committed Oct 29, 2024
commit 8f0af8d4db631a46417d99722e2ad12358b8807b
4 changes: 2 additions & 2 deletions manim/cli/default_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,9 @@ def command(self, *args: Any, **kwargs: Any) -> Callable[[Callable], Command]:
Parameters
----------
*args
Positional arguments to pass to :meth:`click.Command.command`.
Positional arguments to pass to :meth:`click.Group.command`.
**kwargs
Keyword arguments to pass to :meth:`click.Command.command`.
Keyword arguments to pass to :meth:`click.Group.command`.

Returns
-------
Expand Down
Loading