Skip to content

Commit 843d5e4

Browse files
committed
Fix formating issues
1 parent 97f1004 commit 843d5e4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

can/interfaces/ixxat/canlib_vcinpl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,7 @@ def _recv_internal(self, timeout):
721721
)
722722
elif self._message.uMsgInfo.Bits.type == constants.CAN_MSGTYPE_TIMEOVR:
723723
# Add the number of timestamp overruns to the high word
724-
self._overrunticks += (self._message.dwMsgId << 32);
724+
self._overrunticks += (self._message.dwMsgId << 32)
725725
else:
726726
log.warning(
727727
"Unexpected message info type 0x%X",

can/interfaces/ixxat/canlib_vcinpl2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,7 @@ def _recv_internal(self, timeout):
839839
f"Unknown CAN info message code {self._message.abData[0]}",
840840
)
841841
)
842-
# Handle CAN start info message
842+
# Handle CAN start info message
843843
elif self._message.abData[0] == constants.CAN_INFO_START:
844844
self._starttickoffset = self._message.dwTime
845845
elif (
@@ -864,7 +864,7 @@ def _recv_internal(self, timeout):
864864
== constants.CAN_MSGTYPE_TIMEOVR
865865
):
866866
# Add the number of timestamp overruns to the high word
867-
self._overrunticks += (self._message.dwMsgId << 32);
867+
self._overrunticks += (self._message.dwMsgId << 32)
868868
else:
869869
log.warning("Unexpected message info type")
870870

0 commit comments

Comments
 (0)