We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Typehinting in the docstring is redundant.
Before
def f(x: Tensor, n: int = 5) -> Tensor: """ Some paragraph. Parameters ---------- x: Tensor Some words. n: int, default=5 Some other words.
After
def f(x: Tensor, n: int = 5) -> Tensor: """ Some paragraph. Parameters ---------- x: Some words. n: Some other words. Defaults to `5`.
There are some of them, e.g. in ParametricLaplace's __init__. Because of this, they're not shown by mkdocstrings.
ParametricLaplace
__init__
mkdocstrings
The text was updated successfully, but these errors were encountered:
wiseodd
No branches or pull requests
Simplify typehinting
Typehinting in the docstring is redundant.
Before
After
Add missing docs
There are some of them, e.g. in
ParametricLaplace
's__init__
. Because of this, they're not shown bymkdocstrings
.The text was updated successfully, but these errors were encountered: