(value: str, mapping=None)
| 89 | |
| 90 | |
| 91 | def escape_str(value: str, mapping=None) -> str: |
| 92 | return f"'{escape_string(str(value), mapping)}'" |
| 93 | |
| 94 | |
| 95 | def escape_None(value: None, mapping=None) -> str: |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…