Skip to content

Commit

Permalink
Merge pull request #44 from Ipuch/chunks
Browse files Browse the repository at this point in the history
  • Loading branch information
Ipuch authored Dec 11, 2024
2 parents 628723e + 34c19f0 commit 3d93ab7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyorerun/multi_frame_rate_phase_rerun.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def rerun(
self, name: str = "animation_phase", init: bool = True, clear_last_node: bool = False, notebook: bool = False
) -> None:
if self.nb_phases == 1:
self.phase_reruns[0].rerun_with_chunks(name, init, clear_last_node, notebook)
self.phase_reruns[0].rerun(name, init, clear_last_node, notebook)
return

if init:
Expand Down
2 changes: 1 addition & 1 deletion pyorerun/multi_phase_rerun.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@ def rerun(self, server_name: str = "multi_phase_animation", notebook=False) -> N
)

more_phases_after_this_one = i < self.nb_phase - 1
rr_phase.rerun(init=False, clear_last_node=more_phases_after_this_one)
rr_phase.rerun(init=False, clear_last_node=False)

0 comments on commit 3d93ab7

Please sign in to comment.