- bug with skipping data, index must be an int

This commit is contained in:
Jason Bruce 2019-04-24 22:33:00 -04:00
parent 6746155e7e
commit 8046d9c214

View File

@ -39,7 +39,7 @@ class OvenWatcher(threading.Thread):
totalpts = len(self.last_log)
if (totalpts <= maxpts):
return self.last_log
every_nth = totalpts / (maxpts - 1)
every_nth = int(totalpts / (maxpts - 1))
return self.last_log[::every_nth]
def record(self, profile):