Skip to content

Commit

Permalink
refactor: oneline
Browse files Browse the repository at this point in the history
  • Loading branch information
Ipuch committed Dec 7, 2024
1 parent fb17521 commit d9fc52d
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 d9fc52d

Please sign in to comment.