Skip to content

Commit 42ee986

Browse files
fix: format checks
1 parent 999996d commit 42ee986

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dreadnode/agent/hooks/ralph.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,7 @@ def ralph_hook(
135135

136136
# Compose scorers into single averaged scorer with error catching
137137
scorers: list[Scorer[t.Any]] = [
138-
(s if isinstance(s, Scorer) else Scorer(s)).with_(catch=True)
139-
for s in completion_scorers
138+
(s if isinstance(s, Scorer) else Scorer(s)).with_(catch=True) for s in completion_scorers
140139
]
141140
composed_scorer = avg(*scorers) if len(scorers) > 1 else scorers[0]
142141

0 commit comments

Comments
 (0)