Skip to content

Commit 34e7672

Browse files
committed
chore(mistral): remove invalid no cover
Remove invalid no cover comment from Mistral model flagged by strict-no-cover check.
1 parent 2e24bfe commit 34e7672

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydantic_ai_slim/pydantic_ai/models/mistral.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ def _get_python_type(cls, value: dict[str, Any]) -> str:
423423
if value_type == 'object':
424424
additional_properties = value.get('additionalProperties', {})
425425
if isinstance(additional_properties, bool):
426-
return 'bool' # pragma: no cover
426+
return 'bool'
427427
additional_properties_type = additional_properties.get('type')
428428
if (
429429
additional_properties_type in SIMPLE_JSON_TYPE_MAPPING

0 commit comments

Comments
 (0)