diff --git a/generated/nidaqmx/stream_readers/_analog_multi_channel_reader.py b/generated/nidaqmx/stream_readers/_analog_multi_channel_reader.py index b75aba567..22473b1ca 100644 --- a/generated/nidaqmx/stream_readers/_analog_multi_channel_reader.py +++ b/generated/nidaqmx/stream_readers/_analog_multi_channel_reader.py @@ -143,7 +143,7 @@ def read_waveforms( waveforms: list[AnalogWaveform[numpy.float64]], number_of_samples_per_channel: int = READ_ALL_AVAILABLE, reallocation_policy: ReallocationPolicy = ReallocationPolicy.TO_GROW, - timeout: int = 10, + timeout: float = 10.0, ) -> int: """Reads one or more floating-point samples from one or more analog input channels into a list of waveforms. diff --git a/generated/nidaqmx/stream_readers/_analog_single_channel_reader.py b/generated/nidaqmx/stream_readers/_analog_single_channel_reader.py index 5d67b0c6c..0b1baca64 100644 --- a/generated/nidaqmx/stream_readers/_analog_single_channel_reader.py +++ b/generated/nidaqmx/stream_readers/_analog_single_channel_reader.py @@ -115,7 +115,7 @@ def read_waveform( waveform: AnalogWaveform[numpy.float64], number_of_samples_per_channel: int = READ_ALL_AVAILABLE, reallocation_policy: ReallocationPolicy = ReallocationPolicy.TO_GROW, - timeout: int = 10, + timeout: float = 10.0, ) -> int: """Reads one or more floating-point samples from a single analog input channel into a waveform. diff --git a/generated/nidaqmx/stream_readers/_digital_multi_channel_reader.py b/generated/nidaqmx/stream_readers/_digital_multi_channel_reader.py index eee02f4fb..7e898749e 100644 --- a/generated/nidaqmx/stream_readers/_digital_multi_channel_reader.py +++ b/generated/nidaqmx/stream_readers/_digital_multi_channel_reader.py @@ -492,7 +492,7 @@ def read_waveforms( waveforms: list[DigitalWaveform[Any]], number_of_samples_per_channel: int = READ_ALL_AVAILABLE, reallocation_policy: ReallocationPolicy = ReallocationPolicy.TO_GROW, - timeout: int = 10, + timeout: float = 10.0, ) -> list[DigitalWaveform[Any]]: """Reads one or more samples from one or more digital input channels into a list of waveforms. diff --git a/generated/nidaqmx/system/__init__.py b/generated/nidaqmx/system/__init__.py index cbcc8f80f..0370213a6 100644 --- a/generated/nidaqmx/system/__init__.py +++ b/generated/nidaqmx/system/__init__.py @@ -1,5 +1,6 @@ """NI-DAQmx system classes.""" +from nidaqmx.system import storage from nidaqmx.system.device import Device from nidaqmx.system.physical_channel import PhysicalChannel from nidaqmx.system.system import ( diff --git a/src/handwritten/stream_readers/_analog_multi_channel_reader.py b/src/handwritten/stream_readers/_analog_multi_channel_reader.py index b75aba567..22473b1ca 100644 --- a/src/handwritten/stream_readers/_analog_multi_channel_reader.py +++ b/src/handwritten/stream_readers/_analog_multi_channel_reader.py @@ -143,7 +143,7 @@ def read_waveforms( waveforms: list[AnalogWaveform[numpy.float64]], number_of_samples_per_channel: int = READ_ALL_AVAILABLE, reallocation_policy: ReallocationPolicy = ReallocationPolicy.TO_GROW, - timeout: int = 10, + timeout: float = 10.0, ) -> int: """Reads one or more floating-point samples from one or more analog input channels into a list of waveforms. diff --git a/src/handwritten/stream_readers/_analog_single_channel_reader.py b/src/handwritten/stream_readers/_analog_single_channel_reader.py index 5d67b0c6c..0b1baca64 100644 --- a/src/handwritten/stream_readers/_analog_single_channel_reader.py +++ b/src/handwritten/stream_readers/_analog_single_channel_reader.py @@ -115,7 +115,7 @@ def read_waveform( waveform: AnalogWaveform[numpy.float64], number_of_samples_per_channel: int = READ_ALL_AVAILABLE, reallocation_policy: ReallocationPolicy = ReallocationPolicy.TO_GROW, - timeout: int = 10, + timeout: float = 10.0, ) -> int: """Reads one or more floating-point samples from a single analog input channel into a waveform. diff --git a/src/handwritten/stream_readers/_digital_multi_channel_reader.py b/src/handwritten/stream_readers/_digital_multi_channel_reader.py index eee02f4fb..7e898749e 100644 --- a/src/handwritten/stream_readers/_digital_multi_channel_reader.py +++ b/src/handwritten/stream_readers/_digital_multi_channel_reader.py @@ -492,7 +492,7 @@ def read_waveforms( waveforms: list[DigitalWaveform[Any]], number_of_samples_per_channel: int = READ_ALL_AVAILABLE, reallocation_policy: ReallocationPolicy = ReallocationPolicy.TO_GROW, - timeout: int = 10, + timeout: float = 10.0, ) -> list[DigitalWaveform[Any]]: """Reads one or more samples from one or more digital input channels into a list of waveforms. diff --git a/src/handwritten/system/__init__.py b/src/handwritten/system/__init__.py index cbcc8f80f..0370213a6 100644 --- a/src/handwritten/system/__init__.py +++ b/src/handwritten/system/__init__.py @@ -1,5 +1,6 @@ """NI-DAQmx system classes.""" +from nidaqmx.system import storage from nidaqmx.system.device import Device from nidaqmx.system.physical_channel import PhysicalChannel from nidaqmx.system.system import (