Skip to content

Commit 8449ecc

Browse files
committed
initial
1 parent d908967 commit 8449ecc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nixnet/_session/signals.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def read(
8383
self,
8484
num_values_per_signal,
8585
timeout=constants.TIMEOUT_NONE):
86-
# type: () -> typing.Tuple[int, float, typing.List[float]]
86+
# type: (int, float) -> typing.Tuple[int, float, typing.List[float]]
8787
"""Read data from a Signal Input Waveform session.
8888
8989
Returns:
@@ -131,7 +131,7 @@ def write(
131131
self,
132132
signals,
133133
timeout=10):
134-
# type: (typing.List[typing.List[float]]) -> None
134+
# type: (typing.List[typing.List[float]], float) -> None
135135
"""Write data to a Signal Output Waveform session.
136136
137137
Args:
@@ -147,7 +147,7 @@ def write(
147147
timeout(float): The time in seconds to wait for the data to be
148148
queued for transmit. The timeout does not wait for frames to be
149149
transmitted on the network (see
150-
:any:`nixnet._session.SessionBase.wait_for_transmit_complete`).
150+
:any:`nixnet._session.base.SessionBase.wait_for_transmit_complete`).
151151
152152
If 'timeout' is positive, this function waits up to that 'timeout'
153153
for space to become available in queues. If the space is not

0 commit comments

Comments
 (0)