Skip to content

Commit 6354786

Browse files
author
Dilmi Wickramanayake
committed
Pyright error
1 parent 85a7856 commit 6354786

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/nidaqmx_analog_input_filtering/nidaqmx_analog_input_filtering.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
try:
121121
task.start()
122122
while not panel.get_value("stop_button", False):
123-
data = task.read(number_of_samples_per_channel=100)
123+
data = task.read(number_of_samples_per_channel=100) # pyright: ignore[reportArgumentType]
124124
panel.set_value("acquired_data", data)
125125
except KeyboardInterrupt:
126126
pass

0 commit comments

Comments
 (0)