Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit aa4a017

Browse files
committedApr 14, 2025·
Docstrings pt 24
1 parent 805ad6b commit aa4a017

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎tests/utils/mock_element.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ def __init__(
3535
3636
Parameters
3737
----------
38-
invalid_values: set[Any] | None, optional (default=None)
38+
invalid_values: set[Any] | None, optional
3939
Set of values to consider invalid.
40-
return_as_numpy_array: bool, optional (default=False)
40+
return_as_numpy_array: bool, default=False
4141
If True return output as numpy array, otherwise as list.
42-
name: str, optional (default="dummy")
42+
name: str, default="dummy"
4343
Name of PipelineElement
44-
uuid: str, optional (default=None)
44+
uuid: str | None, optional
4545
Unique identifier of PipelineElement.
46-
n_jobs: int, optional (default=1)
46+
n_jobs: int, default=1
4747
Number of jobs to run in parallel.
4848
"""
4949
super().__init__(name=name, uuid=uuid, n_jobs=n_jobs)

0 commit comments

Comments
 (0)
Please sign in to comment.