Skip to content

Commit

Permalink
Fix ml
Browse files Browse the repository at this point in the history
  • Loading branch information
neNasko1 committed Nov 1, 2024
1 parent 1d6bcbc commit 3c8e9b1
Show file tree
Hide file tree
Showing 3 changed files with 227 additions and 172 deletions.
4 changes: 3 additions & 1 deletion src/spox/_public.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,9 @@ def inline_inner(*args: Var, **kwargs: Var) -> dict[str, Var]:
model=model,
)

return node.get_output_vars(flatten_variadic=True)
return dict(
zip(out_names, node.get_output_vars(flatten_variadic=True).values())
)

return inline_inner

Expand Down
Loading

0 comments on commit 3c8e9b1

Please sign in to comment.