indention

This commit is contained in:
2021-04-06 19:05:08 +02:00
parent d7775324f5
commit 599a12f31e

View File

@ -52,12 +52,12 @@ with MorIOC("mtest") as mor:
# creates MTEST:CHAN-IMAGE:FPICTURE, :WIDTH, :HEIGHT # creates MTEST:CHAN-IMAGE:FPICTURE, :WIDTH, :HEIGHT
while True: while True:
val = random() val = random()
pvo.put(val) pvo.put(val)
val = pvi.get() val = pvi.get()
print(val) print(val)
val = np.random.random(200).reshape(10, 20) val = np.random.random(200).reshape(10, 20)
img.put(val) img.put(val)
``` ```