Skip to content

Commit 57fc634

Browse files
authored
Merge pull request #23 from caternuson/iss18
Remove stop kwarg
2 parents d13a2ca + af2e6d7 commit 57fc634

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

adafruit_mlx90393.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,7 @@ def _transceive(self, payload, rxlen=0):
215215
# Write 'value' to the specified register
216216
# TODO: Check this. It's weird that the write is accepted but the read is naked.
217217
with self.i2c_device as i2c:
218-
# pylint: disable=unexpected-keyword-arg
219-
i2c.write(payload, stop=False)
218+
i2c.write(payload)
220219

221220
while True:
222221
try:

0 commit comments

Comments
 (0)