Skip to content

Commit

Permalink
Fix a tiny typo in _Step docstring (#1051)
Browse files Browse the repository at this point in the history
Co-authored-by: plaguss <[email protected]>
  • Loading branch information
sadra-barikbin and plaguss authored Nov 7, 2024
1 parent 7c8976b commit f949640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/distilabel/steps/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def process(self, inputs: StepInput) -> StepOutput:
class StepWithSeveralPreviousStep(Step):
# mind the * to indicate that the argument is a list of StepInput
def process(self, inputs: *StepInput) -> StepOutput:
def process(self, *inputs: StepInput) -> StepOutput:
yield [...]
```
Expand Down

0 comments on commit f949640

Please sign in to comment.