Skip to content

Commit 0bc2800

Browse files
committed
fix format
1 parent 7fd3bfe commit 0bc2800

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/magentic_ui/eval/benchmarks/webvoyager/webvoyager.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ def __init__(
7979
if eval_method not in ["exact_match", "gpt_eval"]:
8080
raise ValueError("eval_method must be 'exact_match' or 'gpt_eval'")
8181
self.eval_method = eval_method
82-
self.eval_client_config: Dict[str, Any] = eval_client_config or self.DEFAULT_EVAL_CONFIG
82+
self.eval_client_config: Dict[str, Any] = (
83+
eval_client_config or self.DEFAULT_EVAL_CONFIG
84+
)
8385
assert self.data_dir is not None
8486
self.data_file = os.path.join(self.data_dir, "WebVoyager_data.jsonl")
8587
self.reference_file = os.path.join(self.data_dir, "reference_answer.json")

0 commit comments

Comments
 (0)