Skip to content

Commit

Permalink
postprocesses: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippvK committed May 23, 2024
1 parent 95c1dd8 commit c6b3e94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlonmcu/session/postprocess/postprocesses.py
Original file line number Diff line number Diff line change
Expand Up @@ -1539,7 +1539,7 @@ def post_run(self, report, artifacts):
# fallback for custom name-based npy dict
out_data = list(output.values())[ii]
else: # fallback for index-based npy array
assert isinstance(output, (list, np.array)), "expected dict, list of np.array type"
assert isinstance(output, (list, np.array)), "expected dict, list or np.array type"
out_data = output[ii]
else:
RuntimeError(f"Output not found: {out_name}")
Expand Down

0 comments on commit c6b3e94

Please sign in to comment.