Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion obd/obd.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(self, portstr=None, baudrate=None, protocol=None, fast=True,
self.fast = fast # global switch for disabling optimizations
self.timeout = timeout
self.__last_command = b"" # used for running the previous command with a CR
self.__last_header = ECU_HEADER.ENGINE # for comparing with the previously used header
self.__last_header = "" # for comparing with the previously used header
self.__frame_counts = {} # keeps track of the number of return frames for each command

logger.info("======================= python-OBD (v%s) =======================" % __version__)
Expand Down