diff --git a/scripts/schema/cleaner.py b/scripts/schema/cleaner.py index f6c68f4337..1e81433ba8 100644 --- a/scripts/schema/cleaner.py +++ b/scripts/schema/cleaner.py @@ -281,7 +281,7 @@ def check_example_value(field: Union[List, FieldEntry], strict: Optional[bool] = if isinstance(example_value, (list, dict)): field_name: str = field['field_details']['name'] - msg: str = f"Example value for field `{field_name}` contains an object or array which must be quoted to avoid YAML interpretation." + msg: str = f"Example value for field {field_name} contains an object or array which must be quoted to avoid YAML interpretation." strict_warning_handler(msg, strict) # Examples with arrays must be handled