@@ -310,8 +310,6 @@ class CursesMonitor(object):
self.win.addstr(lineno,
len(line) - STATE_WIDTH + BORDER_SPACING - 1,
task.state, state_color | attr)
- if task.ready:
- task.visited = time.time()
def draw(self):
win = self.win
@@ -14,7 +14,6 @@ HEARTBEAT_EXPIRE = 150 # 2 minutes, 30 seconds
class Element(AttributeDict):
"""Base class for types."""
- visited = False
def __init__(self, **fields):
dict.__init__(self, fields)