File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
pydantic_evals/pydantic_evals/reporting Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ def render(
234234 metric_configs : dict [str , RenderNumberConfig ] | None = None ,
235235 duration_config : RenderNumberConfig | None = None ,
236236 include_reasons : bool = False ,
237- ) -> str : # pragma: no cover
237+ ) -> str :
238238 """Render this report to a nicely-formatted string, optionally comparing it to a baseline report.
239239
240240 If you want more control over the output, use `console_table` instead and pass it to `rich.Console.print`.
@@ -390,7 +390,7 @@ def console_table(
390390 )
391391 if baseline is None :
392392 return renderer .build_table (self , with_title = with_title )
393- else : # pragma: no cover
393+ else :
394394 return renderer .build_diff_table (self , baseline , with_title = with_title )
395395
396396 def _metadata_panel (
You can’t perform that action at this time.
0 commit comments