Skip to content

Commit

Permalink
fix: fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Sep 28, 2024
1 parent 03f8972 commit 2461448
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions gptme/eval/run.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import concurrent.futures
import inspect
import io
import logging
import multiprocessing
Expand Down Expand Up @@ -242,9 +241,7 @@ def execute(test: EvalSpec, agent: Agent, timeout: int, parallel: bool) -> EvalR
checkmark = "✅" if passed else "❌"
print(f"{checkmark} {name:20s}")
results.append(
CaseResult(
name=name, passed=passed, duration=eval_duration
)
CaseResult(name=name, passed=passed, duration=eval_duration)
)
print("--- End of results ---\n")

Expand Down

0 comments on commit 2461448

Please sign in to comment.