We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 173e66a + f62f13d commit 5e0ee0aCopy full SHA for 5e0ee0a
examples/nidaqmx/nidaqmx_continuous_analog_input.py
@@ -21,7 +21,7 @@
21
try:
22
print(f"\nPress Ctrl + C to stop")
23
while True:
24
- data = task.read(number_of_samples_per_channel=1000)
+ data = task.read(number_of_samples_per_channel=1000) # pyright: ignore[reportArgumentType]
25
panel.set_value("voltage_data", data[0])
26
panel.set_value("thermocouple_data", data[1])
27
except KeyboardInterrupt:
0 commit comments