From d1f4f2771d9d7acae784062cbf62890cd57d42fe Mon Sep 17 00:00:00 2001 From: Ipuch Date: Mon, 6 May 2024 15:27:28 -0400 Subject: [PATCH] fix circular import in LiveModelAnimation --- pyorerun/live_animation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyorerun/live_animation.py b/pyorerun/live_animation.py index b2b2e16..e16d1ef 100644 --- a/pyorerun/live_animation.py +++ b/pyorerun/live_animation.py @@ -4,7 +4,8 @@ import numpy as np import rerun as rr -from pyorerun import BiorbdModel, PhaseRerun +from .biorbd_components.model_interface import BiorbdModel +from .phase_rerun import PhaseRerun class LiveModelAnimation: