Skip to content

Commit c78dce3

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 2566810 commit c78dce3

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

movement/kinematics/body_axis.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1373,7 +1373,7 @@ def apply_lateral_filter(
13731373
report.longitudinal_std_norm[valid_idx] = long_std_norm
13741374

13751375
# Combined effective lateral score:
1376-
# mean_offset + lateral_var_weight * lateral_std
1376+
# mean_offset + lateral_var_weight * lateral_std
13771377
# + long_var_weight * long_std
13781378
effective_lateral = (
13791379
d_norm
@@ -2572,11 +2572,15 @@ def log_step1_report(pair_report, config, valid_nodes, log_info):
25722572
)
25732573
if pass_strs:
25742574
log_info(
2575-
" PASS (score <= %.2f): %s", percentile_thresh, ", ".join(pass_strs)
2575+
" PASS (score <= %.2f): %s",
2576+
percentile_thresh,
2577+
", ".join(pass_strs),
25762578
)
25772579
if fail_strs:
25782580
log_info(
2579-
" FAIL (score > %.2f): %s", percentile_thresh, ", ".join(fail_strs)
2581+
" FAIL (score > %.2f): %s",
2582+
percentile_thresh,
2583+
", ".join(fail_strs),
25802584
)
25812585

25822586

0 commit comments

Comments
 (0)