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.
1 parent 85a7856 commit 6354786Copy full SHA for 6354786
examples/nidaqmx_analog_input_filtering/nidaqmx_analog_input_filtering.py
@@ -120,7 +120,7 @@
120
try:
121
task.start()
122
while not panel.get_value("stop_button", False):
123
- data = task.read(number_of_samples_per_channel=100)
+ data = task.read(number_of_samples_per_channel=100) # pyright: ignore[reportArgumentType]
124
panel.set_value("acquired_data", data)
125
except KeyboardInterrupt:
126
pass
0 commit comments