Skip to content

Commit

Permalink
fix(install): remove circular dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
AmitMY committed Jan 13, 2025
1 parent 3e4e5e3 commit 56e6717
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/pose_format/pose.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
PoseNormalizationInfo)
from pose_format.utils.fast_math import distance_batch
from pose_format.utils.reader import BufferReader
from pose_format.utils.generic import pose_normalization_info


class Pose:
Expand Down Expand Up @@ -105,7 +104,8 @@ def normalize(self, info: PoseNormalizationInfo|None=None, scale_factor: float =
The normalized Pose object.
"""
if info is None:
info = pose_normalization_info(self)
from pose_format.utils.generic import pose_normalization_info
info = pose_normalization_info(self.header)

transposed = self.body.points_perspective()

Expand Down

0 comments on commit 56e6717

Please sign in to comment.