Closed lars-reimann closed 5 months ago
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
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