Skip to content

Commit 32a2b13

Browse files
committed
fix async history error
1 parent 59117cc commit 32a2b13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guardrails/guard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1370,7 +1370,7 @@ def to_dict(self) -> Dict[str, Any]:
13701370
description=self.description,
13711371
validators=self.validators,
13721372
output_schema=self.output_schema,
1373-
history=[c.to_interface() for c in self.history], # type: ignore
1373+
history=[], # type: ignore
13741374
)
13751375

13761376
return i_guard.to_dict()

0 commit comments

Comments
 (0)