Skip to content

Commit b74bb0d

Browse files
committed
fixed lint
1 parent cf1fc8b commit b74bb0d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_persistent_agent.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,9 @@ def test_compaction_triggered_by_template_call(self, tmp_path: Path):
801801
):
802802
bot.send("trigger compaction")
803803

804-
result = provider._histories.get("ChatBot", {})
804+
result: OrderedDict[str, Any] = provider._histories.get(
805+
"ChatBot", OrderedDict()
806+
)
805807
assert len(result) <= 4 + 4
806808

807809
def test_compaction_works_on_plain_agent(self):

0 commit comments

Comments
 (0)