Skip to content

Commit f951e65

Browse files
TLSDCgasse
authored andcommitted
typo
1 parent 7d37a1b commit f951e65

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/agentlab/experiments/study.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import pickle
44
import re
55
import uuid
6+
from abc import ABC, abstractmethod
67
from dataclasses import dataclass
78
from datetime import datetime
89
from pathlib import Path
@@ -16,11 +17,7 @@
1617
from agentlab.experiments import args
1718
from agentlab.experiments import reproducibility_util as repro
1819
from agentlab.experiments.exp_utils import RESULTS_DIR, add_dependencies
19-
from agentlab.experiments.launch_exp import (
20-
find_incomplete,
21-
non_dummy_count,
22-
run_experiments,
23-
)
20+
from agentlab.experiments.launch_exp import find_incomplete, non_dummy_count, run_experiments
2421

2522
logger = logging.getLogger(__name__)
2623

@@ -353,7 +350,7 @@ def _agents_on_benchmark(
353350
The logging level for individual jobs.
354351
355352
Returns:
356-
study: Study
353+
list[ExpArgs]: The list of experiments to run.
357354
"""
358355

359356
if not isinstance(agents, (list, tuple)):

0 commit comments

Comments
 (0)