File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
guardrails/classes/history Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -323,13 +323,13 @@ def tree(self) -> Tree:
323323
324324 # Replace the last Validated Output panel if we applied fixes
325325 if self .failed_validations .length > 0 and self .status == pass_status :
326- previous_panels = tree .children [- 1 ].label .renderable ._renderables [:- 1 ]
326+ previous_panels = tree .children [- 1 ].label .renderable ._renderables [:- 1 ] # type: ignore
327327 validated_outcome_panel = Panel (
328328 pretty_repr (self .validated_output ),
329329 title = "Validated Output" ,
330330 style = "on #F0FFF0" ,
331331 )
332- tree .children [- 1 ].label .renderable ._renderables = previous_panels + (
332+ tree .children [- 1 ].label .renderable ._renderables = previous_panels + ( # type: ignore
333333 validated_outcome_panel ,
334334 )
335335
You can’t perform that action at this time.
0 commit comments