Skip to content

Commit

Permalink
Merge pull request #23 from caternuson/iss18
Browse files Browse the repository at this point in the history
Remove stop kwarg
  • Loading branch information
caternuson committed Oct 15, 2020
2 parents d13a2ca + af2e6d7 commit 57fc634
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions adafruit_mlx90393.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,7 @@ def _transceive(self, payload, rxlen=0):
# Write 'value' to the specified register
# TODO: Check this. It's weird that the write is accepted but the read is naked.
with self.i2c_device as i2c:
# pylint: disable=unexpected-keyword-arg
i2c.write(payload, stop=False)
i2c.write(payload)

while True:
try:
Expand Down

0 comments on commit 57fc634

Please sign in to comment.