Skip to content

Commit 2a0bf33

Browse files
committed
Fix coverage
1 parent 7c74773 commit 2a0bf33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydantic_evals/pydantic_evals/reporting/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)