File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 22
22
try :
23
23
_ecomlib = CLibrary ("ecommlib64.dll" )
24
24
if _ecomlib is None :
25
- raise CanInterfaceNotImplementedError (' CLibrary not loaded.' )
25
+ raise CanInterfaceNotImplementedError (" CLibrary not loaded." )
26
26
except Exception as e :
27
27
log .error (f"Cannot load ECOMM library: { e } " )
28
28
@@ -351,7 +351,9 @@ def _recv_extended(self) -> Optional[Message]:
351
351
rx_msg = None
352
352
return rx_msg
353
353
354
- def _recv_internal (self , timeout : Optional [float ]) -> Tuple [Optional [Message ], bool ]:
354
+ def _recv_internal (
355
+ self , timeout : Optional [float ]
356
+ ) -> Tuple [Optional [Message ], bool ]:
355
357
"""
356
358
Read a message from the bus and tell whether it was filtered.
357
359
This methods may be called by :meth:`~can.BusABC.recv`
You can’t perform that action at this time.
0 commit comments