(value: Any)
| 215 | # psycopg2 will override this method to allow driver-level conversion |
| 216 | # instead, see _PsycopgHStore |
| 217 | def process(value: Any) -> Any: |
| 218 | if isinstance(value, dict): |
| 219 | return _serialize_hstore(value) |
| 220 | else: |
| 221 | return value |
| 222 | |
| 223 | return process |
| 224 |
nothing calls this directly
no test coverage detected