remove float

This commit is contained in:
Josh Burman 2021-11-30 20:20:32 +00:00
parent e605f787ed
commit 13448fb73a

View File

@ -27,7 +27,7 @@ def items_csv_to_dict(items_csv_reader):
'type': 'metadata'
})
elif count == len(headers):
item['b_param'] = float(row[key])
item['b_param'] = row[key]
items.append(item)