From 14bcfeb684618e22b3677191c46ab83f1d09ca6d Mon Sep 17 00:00:00 2001 From: Peetu Saarinen Date: Fri, 7 Jul 2023 20:27:35 +0300 Subject: [PATCH] Call BusABC init in IXXATBus (#1628) --- can/interfaces/ixxat/canlib.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/can/interfaces/ixxat/canlib.py b/can/interfaces/ixxat/canlib.py index 3db719f96..cd79f5634 100644 --- a/can/interfaces/ixxat/canlib.py +++ b/can/interfaces/ixxat/canlib.py @@ -131,6 +131,8 @@ def __init__( **kwargs ) + super().__init__(channel=channel, **kwargs) + def flush_tx_buffer(self): """Flushes the transmit buffer on the IXXAT""" return self.bus.flush_tx_buffer()