Skip to content

Commit 73505df

Browse files
recursixgasse
authored andcommitted
black
1 parent 387ca5d commit 73505df

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

src/agentlab/experiments/study.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def get_report(self, ignore_cache=False, ignore_stale=False):
254254
return inspect_results.get_study_summary(
255255
self.dir, ignore_cache=ignore_cache, ignore_stale=ignore_stale
256256
)
257-
257+
258258
def override_max_steps(self, max_steps):
259259
for exp_args in self.exp_args_list:
260260
exp_args.env_args.max_steps = max_steps

tests/agents/test_generic_prompt.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,18 @@
3535
}
3636

3737
OBS_HISTORY = [
38-
base_obs | {
38+
base_obs
39+
| {
3940
"pruned_html": html_template.format(1),
4041
"last_action_error": "",
4142
},
42-
base_obs | {
43+
base_obs
44+
| {
4345
"pruned_html": html_template.format(2),
4446
"last_action_error": "Hey, this is an error in the past",
4547
},
46-
base_obs | {
48+
base_obs
49+
| {
4750
"pruned_html": html_template.format(3),
4851
"last_action_error": "Hey, there is an error now",
4952
},

0 commit comments

Comments
 (0)