send one segment at a time

Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
This commit is contained in:
Csaba Kiraly 2023-02-03 23:08:53 +01:00
parent eb277d9b43
commit 3917001e6a
No known key found for this signature in database
GPG Key ID: 0FE274EE8C95166E

View File

@ -246,10 +246,10 @@ class Validator:
while True:
perLine = []
for c in self.columnIDs:
perLine.append(self.nextColumnToSend(c))
perLine.append(self.nextColumnToSend(c, 1))
for r in self.rowIDs:
perLine.append(self.nextRowToSend(r))
perLine.append(self.nextRowToSend(r, 1))
count = 0
random.shuffle(perLine)