Stop still converting datetime to float

small_kucoin_fixes
jaredgoldman 2023-03-24 20:16:18 -04:00
parent 81890a39d9
commit 788e158d9f
1 changed files with 2 additions and 0 deletions

View File

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