Skip to content

Commit

Permalink
Compile
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 18, 2024
1 parent 0f294e0 commit 6bab77c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/src/niwrap/greedy/greedy.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ class GreedyOutputs(typing.NamedTuple):
"""Resliced output image"""
invert: GreedyInvertOutputs | None
"""Outputs from `GreedyInvert`."""
root: GreedyRootOutputs | None
root_: GreedyRootOutputs | None
"""Outputs from `GreedyRoot`."""
jacobian: GreedyJacobianOutputs | None
"""Outputs from `GreedyJacobian`."""
Expand Down Expand Up @@ -990,7 +990,7 @@ def greedy_(
output_file=execution.output_file(output),
reslice_output_file=execution.output_file("[RESLICE_OUTPUT_IMAGE]"),
invert=invert.outputs(execution) if invert else None,
root=root.outputs(execution) if root else None,
root_=root.outputs(execution) if root else None,
jacobian=jacobian.outputs(execution) if jacobian else None,
reslice_moving_image=reslice_moving_image.outputs(execution) if reslice_moving_image else None,
reslice_surface=reslice_surface.outputs(execution) if reslice_surface else None,
Expand Down

0 comments on commit 6bab77c

Please sign in to comment.