-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add type hints to
manim.cli
module (#3988)
* Add type hints to cli * Import click.Parameter instead of non existing cloup.Parameter * Stop ignoring manim.cli errors in mypy.ini * Fix mypy errors * Remove unused TypeVar C * click.Command.command -> cloup.Group.command * Address Jason's requested changes * exit() -> sys.exit()
- Loading branch information
Showing
17 changed files
with
543 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
"""The Manim CLI, and the available commands for ``manim``. | ||
This page is a work in progress. Please run ``manim`` or ``manim --help`` in | ||
your terminal to find more information on the following commands. | ||
Available commands | ||
------------------ | ||
.. autosummary:: | ||
:toctree: ../reference | ||
cfg | ||
checkhealth | ||
init | ||
plugins | ||
render | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.