Skip to content

Commit

Permalink
fix(API): Fix property for getting Frame subframes.
Browse files Browse the repository at this point in the history
  • Loading branch information
d-bohls committed Jan 31, 2018
1 parent cdef471 commit a5eb586
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixnet/db/_frame.py
Expand Up @@ -21,7 +21,7 @@ def __init__(self, handle):
self._mux_static_signals = _collection.DbCollection(
self._handle, constants.ObjectClass.SIGNAL, _cconsts.NX_PROP_FRM_MUX_STATIC_SIG_REFS, _signal.Signal)
self._mux_subframes = _collection.DbCollection(
self._handle, constants.ObjectClass.SUBFRAME, _cconsts.NX_PROP_PDU_MUX_SUBFRAME_REFS, _subframe.SubFrame)
self._handle, constants.ObjectClass.SUBFRAME, _cconsts.NX_PROP_FRM_MUX_SUBFRAME_REFS, _subframe.SubFrame)

def __eq__(self, other):
if isinstance(other, self.__class__):
Expand Down

0 comments on commit a5eb586

Please sign in to comment.