Convert a value to a string and add double quotes if it is a string.
It required for comparators involving strings.
process_value(
value: Union[int, float, str],
comparator: Comparator,
) -> str| Name | Type | Description |
|---|---|---|
value* | Union[int, float, str] | The value to convert. |
comparator* | Comparator | The comparator. |