Skip to content

Commit bc9e92a

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 6afbdab commit bc9e92a

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

0 commit comments

Comments
 (0)