Skip to content

Commit bd789cb

Browse files
Fix autolint error
1 parent 2831512 commit bd789cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guardrails/classes/history/call.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def validation_response(self) -> Optional[Union[str, Dict, ReAsk]]:
227227
self.inputs.full_schema_reask
228228
or number_of_iterations < 2
229229
or isinstance(
230-
self.iterations.last.validation_response,
230+
self.iterations.last.validation_response, # type: ignore
231231
ReAsk, # type: ignore
232232
)
233233
or isinstance(self.iterations.last.validation_response, str) # type: ignore

0 commit comments

Comments
 (0)