brendan-w / python-OBD

OBD-II serial module for reading engine data
GNU General Public License v2.0
1.02k stars 360 forks source link

Minor change to the protocol values #152

Closed cyrax6 closed 5 years ago

cyrax6 commented 5 years ago

While the documentation had no quotes, the code needed the quotes. Passing obd.Async(port, protocol="3") is the correct way not obd.Async(port, protocol=3). While this is evident from reading the code, this change makes is more evident.