We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a44e8c4 commit 236157eCopy full SHA for 236157e
1 file changed
can/interfaces/ecom/canlib.py
@@ -22,7 +22,7 @@
22
try:
23
_ecomlib = CLibrary("ecommlib64.dll")
24
if _ecomlib is None:
25
- raise CanInterfaceNotImplementedError('CLibrary not loaded.')
+ raise CanInterfaceNotImplementedError("CLibrary not loaded.")
26
except Exception as e:
27
log.error(f"Cannot load ECOMM library: {e}")
28
@@ -351,7 +351,9 @@ def _recv_extended(self) -> Optional[Message]:
351
rx_msg = None
352
return rx_msg
353
354
- def _recv_internal(self, timeout: Optional[float]) -> Tuple[Optional[Message], bool]:
+ def _recv_internal(
355
+ self, timeout: Optional[float]
356
+ ) -> Tuple[Optional[Message], bool]:
357
"""
358
Read a message from the bus and tell whether it was filtered.
359
This methods may be called by :meth:`~can.BusABC.recv`
0 commit comments