Skip to content

Commit 5e0ee0a

Browse files
author
Dilmi Wickramanayake
committed
Merge branch 'users/DilmiWickramanayake/Analog_Input' of https://github.com/ni/nipanel-python into users/DilmiWickramanayake/Analog_Input
2 parents 173e66a + f62f13d commit 5e0ee0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/nidaqmx/nidaqmx_continuous_analog_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
try:
2222
print(f"\nPress Ctrl + C to stop")
2323
while True:
24-
data = task.read(number_of_samples_per_channel=1000)
24+
data = task.read(number_of_samples_per_channel=1000) # pyright: ignore[reportArgumentType]
2525
panel.set_value("voltage_data", data[0])
2626
panel.set_value("thermocouple_data", data[1])
2727
except KeyboardInterrupt:

0 commit comments

Comments
 (0)