fix column headers

This commit is contained in:
Andrew de Quincey 2021-05-01 11:04:08 +01:00
parent 83e742c433
commit 0c0f0cff1e

View File

@ -49,8 +49,8 @@ def calculate(filename, tangentdivisor, showplot):
with open(filename) as f:
for row in csv.DictReader(f):
try:
time = float(row['pid_time'])
temp = float(row['pid_ispoint'])
time = float(row['time'])
temp = float(row['temperature'])
if filemintime is None:
filemintime = time