Skip to content

Commit

Permalink
Merge pull request #519 from HaoZeke/patch-1
Browse files Browse the repository at this point in the history
DOC: Fix typo in firetask tutorial
  • Loading branch information
janosh authored Mar 30, 2024
2 parents ddb3b98 + f7f76a1 commit 51a44ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs_rst/firetask_tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ Let's explore custom Firetasks with an example: a custom Python script for addin
input_array = fw_spec['input_array']
m_sum = sum(input_array)

print(f"The sum of {input_array} is: {m_sum}"
print(f"The sum of {input_array} is: {m_sum}")

return FWAction(stored_data={'sum': m_sum}, mod_spec=[{'_push': {'input_array': m_sum}}])

Expand Down

0 comments on commit 51a44ae

Please sign in to comment.