We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2e26d1b + af49526 commit ebebbc2Copy full SHA for ebebbc2
src/canmatrix/canmatrix.py
@@ -1680,8 +1680,9 @@ def multiplex_signals(self):
1680
for signal in self.signals:
1681
if signal.is_multiplexer or (signal.muxer_for_signal is not None):
1682
continue
1683
- signal.muxer_for_signal = multiplexor.name
1684
signal.mux_val = signal.multiplex
+ if signal.multiplex is not None:
1685
+ signal.muxer_for_signal = multiplexor.name
1686
1687
def __str__(self): # type: () -> str
1688
"""Represent the frame by its name only."""
0 commit comments