(value: Any)
| 2606 | |
| 2607 | |
| 2608 | def csv_cell(value: Any) -> Any: |
| 2609 | if isinstance(value, str) and value.startswith(("=", "+", "-", "@", "\t", "\r")): |
| 2610 | return f"'{value}" |
| 2611 | return value |
| 2612 | |
| 2613 | |
| 2614 | def require_remediation_transition(current: str, requested: str) -> None: |