remove debugging print statement

This commit is contained in:
Andreas Zweili 2019-10-20 21:38:30 +02:00
parent 470801783d
commit 3cec11e045
1 changed files with 0 additions and 1 deletions

View File

@ -8,7 +8,6 @@ def temperature():
x_axis = [] x_axis = []
y_axis = [] y_axis = []
for point in data: for point in data:
print(point.value)
x_axis.append(point.value) x_axis.append(point.value)
y_axis.append(point.time.value) y_axis.append(point.time.value)