Skip to content

Commit ad48a42

Browse files
committed
fix(lint): lint code
1 parent 75d1738 commit ad48a42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pose_anonymization/appearance.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
from pose_format import Pose
55
from pose_format.numpy import NumPyPoseBody
66
from pose_format.utils.generic import pose_normalization_info
7-
from sign_vq.data.normalize import load_pose_header
87

98

109
def normalize_pose_size(pose: Pose):
@@ -60,7 +59,7 @@ def change_appearace(pose: Pose, appearance: np.ndarray):
6059
@lru_cache(maxsize=1)
6160
def get_mean_appearance():
6261
# pylint: disable=import-outside-toplevel
63-
from sign_vq.data.normalize import load_mean_and_std
62+
from sign_vq.data.normalize import load_mean_and_std, load_pose_header
6463
mean, _ = load_mean_and_std()
6564

6665
data = mean.reshape((1, 1, -1, 3)) * 1000

pose_anonymization/evaluate_example_stitching.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from pose_format import Pose
55
from pose_format.numpy.representation.distance import DistanceRepresentation
66
from pose_format.utils.optical_flow import OpticalFlowCalculator
7+
# pylint: disable=import-error
78
from spoken_to_signed.gloss_to_pose.concatenate import concatenate_poses
89

910
plt.rcParams["font.family"] = "Times New Roman"

0 commit comments

Comments
 (0)