summaryrefslogtreecommitdiff
path: root/testing/SendLog/SendLog.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/SendLog/SendLog.py')
-rwxr-xr-xtesting/SendLog/SendLog.py6
1 files 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]