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
If a function has multiple results, they are called result1, result2, etc. in the stubs despite the existence of names in the docstring.
result1
result2
Example (fit_and_transform):
fit_and_transform
/** * ... * * @result fittedTransformer The fitted transformer. * @result transformedTable The transformed table. */ @Pure @PythonName("fit_and_transform") fun fitAndTransform( table: Table, @PythonName("column_names") columnNames: List<String>? = null ) -> (result1: TableTransformer, result2: Table)
Generate stubs for safe-ds.
safe-ds
Results should be named as they are in the docstring.
No response
The text was updated successfully, but these errors were encountered:
fix: Result names for multiple results from docstrings (#155)
ebcadbb
Closes #138 ### Summary of Changes If number of results and docstrings types correspond then docstring names are taken for the results.
Masara
Successfully merging a pull request may close this issue.
Describe the bug
If a function has multiple results, they are called
result1
,result2
, etc. in the stubs despite the existence of names in the docstring.Example (
fit_and_transform
):To Reproduce
Generate stubs for
safe-ds
.Expected behavior
Results should be named as they are in the docstring.
Screenshots (optional)
No response
Additional Context (optional)
No response
The text was updated successfully, but these errors were encountered: