convert b param to float from string

This commit is contained in:
Josh Burman
2021-11-30 19:24:08 +00:00
parent 489a6f22e6
commit 5a35d47391

View File

@ -17,7 +17,7 @@ def items_csv_to_dict(items_csv_reader):
if key == 0:
item[col] = row[key]
elif col == 'b_param':
item[col] = row[key]
item[col] = float(row[key])
elif key > 1:
item['attributes'].append({
'id': col,