removed useless plus
This commit is contained in:
parent
8b137f5510
commit
a540cdab2a
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue