Skip to content

Commit 78eb3da

Browse files
committed
✨ Auto-fix formatting
1 parent 19d981f commit 78eb3da

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
@@ -1271,9 +1271,9 @@ def score_calculation_summary(self, line_prefix: str = "", column_width: int = 0
12711271
current_score = op.value
12721272
lines.append(f"{line_prefix}= {v_str} => {current_score:.2f}")
12731273

1274-
assert abs(current_score - self.score) < 0.0001, (
1275-
f"Score calculation mismatch: calculated {current_score}, expected {self.score}"
1276-
)
1274+
assert (
1275+
abs(current_score - self.score) < 0.0001
1276+
), f"Score calculation mismatch: calculated {current_score}, expected {self.score}"
12771277
return "\n".join(lines)
12781278

12791279

0 commit comments

Comments
 (0)