From f785feb9507c6c3d4c3ee9e601957b77280b36ea Mon Sep 17 00:00:00 2001 From: Adhitya Kamakshidasan Date: Fri, 23 Sep 2016 19:49:47 +0530 Subject: Update SendLog.py --- testing/SendLog/SendLog.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/testing/SendLog/SendLog.py b/testing/SendLog/SendLog.py index 5a0b20e..10c66ef 100755 --- a/testing/SendLog/SendLog.py +++ b/testing/SendLog/SendLog.py @@ -23,11 +23,9 @@ figure_list = [] class line_and_state: # Class to store the line and its state - line = None - state = NOLINE def __init__(self, line, state): - self.line = line - self.state = state + self.line = None + self.state = NOLINE def set(self, line_state): self.line = line_state[0] self.state = line_state[1] -- cgit