Skip to content

Commit ce36cdc

Browse files
committed
✨ Auto-fix formatting
1 parent 4c4f2af commit ce36cdc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

api/src/tasks/delegate.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1172,9 +1172,9 @@ def score_calculation_summary(self, line_prefix: str = "", column_width: int = 0
11721172
current_score = op.value
11731173
lines.append(f"{line_prefix}= {v_str} => {current_score:.2f}")
11741174

1175-
assert abs(current_score - self.score) < 0.0001, (
1176-
f"Score calculation mismatch: calculated {current_score}, expected {self.score}"
1177-
)
1175+
assert (
1176+
abs(current_score - self.score) < 0.0001
1177+
), f"Score calculation mismatch: calculated {current_score}, expected {self.score}"
11781178
return "\n".join(lines)
11791179

11801180

0 commit comments

Comments
 (0)