Skip to content

Commit

Permalink
Update docs/sections/how_to_guides/basic/step/index.md
Browse files Browse the repository at this point in the history
Co-authored-by: Alvaro Bartolome <[email protected]>
  • Loading branch information
davidberenstein1957 and alvarobartt authored Jun 12, 2024
1 parent 8da367d commit 6cd454a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/sections/how_to_guides/basic/step/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ We can define a custom step by creating a new subclass of the [`Step`][distilabe
from distilabel.steps.typing import StepOutput

@step(inputs=[...], outputs=[...])
def CustomStep(inputs: StepInput) - StepOutput:
def CustomStep(inputs: StepInput) -> StepOutput:
for input in inputs:
...
yield inputs
Expand Down

0 comments on commit 6cd454a

Please sign in to comment.