Fix broken refresh throttle

This commit is contained in:
Kevin Fronczak
2018-09-26 12:24:45 -04:00
parent a570413e66
commit c3c558e934
+1
View File
@@ -175,5 +175,6 @@ class Blink():
if last_refresh is None:
last_refresh = 0
if current_time >= (last_refresh + self.refresh_rate):
self.last_refresh = current_time
return True
return False