Skip to content

Commit 358e817

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

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

movement/kinematics/body_axis.py

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

13791379
# Combined effective lateral score:
1380-
# mean_offset + lateral_var_weight * lateral_std
1380+
# mean_offset + lateral_var_weight * lateral_std
13811381
# + long_var_weight * long_std
13821382
effective_lateral = (
13831383
d_norm
@@ -2576,11 +2576,15 @@ def log_step1_report(pair_report, config, valid_nodes, log_info):
25762576
)
25772577
if pass_strs:
25782578
log_info(
2579-
" PASS (score <= %.2f): %s", percentile_thresh, ", ".join(pass_strs)
2579+
" PASS (score <= %.2f): %s",
2580+
percentile_thresh,
2581+
", ".join(pass_strs),
25802582
)
25812583
if fail_strs:
25822584
log_info(
2583-
" FAIL (score > %.2f): %s", percentile_thresh, ", ".join(fail_strs)
2585+
" FAIL (score > %.2f): %s",
2586+
percentile_thresh,
2587+
", ".join(fail_strs),
25842588
)
25852589

25862590

0 commit comments

Comments
 (0)