removed useless plus

This commit is contained in:
R Dittberner 2026-06-15 19:29:34 +02:00
parent 8b137f5510
commit a540cdab2a

View file

@ -4,7 +4,7 @@ from time import sleep
def data_test(turns):
counter = 0
for i in range(turns):
JSONstr = f'{{ "T" : {counter} , "V" : {random.randint(0, 255)} + }}'
JSONstr = f'{{ "T" : {counter} , "V" : {random.randint(0, 255)} }}'
yield JSONstr
counter += 1
sleep(0.1)