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

Fixed default options not displaying for parameters without type hints. #279

Merged
merged 15 commits into from Jan 6, 2023

Conversation

BhavyeMathur
Copy link
Contributor

Resolves #234

format_default() takes a new parameter is_annotated to better format the option.

_inject_types_to_docstring() now iterates through all signature parameters. Unchanged behaviour for parameters with type hints, but parameters without type hints now get their default value shown.

Also added tests with 4 functions trying out different variations with/without type hints, default values, and return types.

Works with both the "braces" and "commas" setting for typehints_defaults.

Before:
image

After:
image

@gaborbernat
Copy link
Member

Looks alright once the CI passes.

@BhavyeMathur
Copy link
Contributor Author

Any ideas on how to fix this?

tests/test_sphinx_autodoc_typehints.py:1131: error: "Config" has no attribute "typehints_defaults"

set_python_path()
app.config.master_doc = "without_complete_typehints"  # type: ignore # create flag
app.config.typehints_defaults = "comma"
app.build()

A similar syntax seems to work with the tests above this one...

@gaborbernat
Copy link
Member

You must add trailing # type: ignore on the line.

@BhavyeMathur
Copy link
Contributor Author

@gaborbernat does this look okay?

@gaborbernat gaborbernat merged commit 4e6bc55 into tox-dev:main Jan 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

typehints_defaults does not work when missing python3 sytle type hints
2 participants