Stop still converting datetime to float

emit_clear_ticks_only_on_ts_change
jaredgoldman 2023-03-24 20:16:18 -04:00
parent 95d127cfe0
commit 3b1078bcba
1 changed files with 2 additions and 0 deletions

View File

@ -382,6 +382,8 @@ class Client:
match field_name:
case "index":
row.append(int(value))
case "time":
row.append(value)
case _:
row.append(float(value))