Skip to content

Commit

Permalink
Merge pull request #43 from Ipuch/chunks
Browse files Browse the repository at this point in the history
refactor: oneline
  • Loading branch information
Ipuch authored Dec 7, 2024
2 parents 61ce80e + d9fc52d commit 628723e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pyorerun/multi_phase_rerun.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ def add_phase(self, t_span: np.ndarray, phase: int = 0, window: str = "animation
if self.nb_phase - phase == 0:
self.rerun_biorbd_phases.append(dict())

rerun_biorbd = PhaseRerun(t_span, phase, window)
self.rerun_biorbd_phases[phase][window] = rerun_biorbd
self.rerun_biorbd_phases[phase][window] = PhaseRerun(t_span, phase, window)

def add_animated_model(
self,
Expand Down

0 comments on commit 628723e

Please sign in to comment.