Skip to content

Commit 25aefc3

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 fa07c91 commit 25aefc3

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
@@ -421,7 +421,7 @@ def _get_python_type(cls, value: dict[str, Any]) -> str:
421421
if value_type == 'object':
422422
additional_properties = value.get('additionalProperties', {})
423423
if isinstance(additional_properties, bool):
424-
return 'bool' # pragma: no cover
424+
return 'bool'
425425
additional_properties_type = additional_properties.get('type')
426426
if (
427427
additional_properties_type in SIMPLE_JSON_TYPE_MAPPING

0 commit comments

Comments
 (0)