(v)
| 185 | result = pio.to_json_plotly(value, engine=engine) |
| 186 | |
| 187 | def to_str(v): |
| 188 | try: |
| 189 | v = v.isoformat(sep="T") |
| 190 | except (TypeError, AttributeError): |
| 191 | pass |
| 192 | |
| 193 | return str(v) |
| 194 | |
| 195 | if isinstance(datetime_array, list): |
| 196 | dt_values = [to_str(d) for d in datetime_array] |
no outgoing calls
no test coverage detected