Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions nixnet/_session/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import typing # NOQA: F401

from nixnet import _funcs
from nixnet import _props

from nixnet._session import collection

Expand All @@ -19,20 +18,6 @@ def __repr__(self):
def _create_item(self, handle, index, name):
return Signal(handle, index, name)

@property
def resamp_rate(self):
# type: () -> float
"""float: Rate used to resample frame data to/from signal data in waveforms.

The units are in Hertz (samples per second).
"""
return _props.get_session_resamp_rate(self._handle)

@resamp_rate.setter
def resamp_rate(self, value):
# type: (float) -> None
_props.set_session_resamp_rate(self._handle, value)


class SinglePointInSignals(Signals):
"""Writeable signals in a session."""
Expand Down