Skip to content

Commit 9a16406

Browse files
committed
force labeling of extra args
1 parent 6dcbe4b commit 9a16406

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_bus_device/i2c_device.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def write(self, buf, **kwargs):
102102
self.i2c.writeto(self.device_address, buf, **kwargs)
103103

104104
#pylint: disable-msg=too-many-arguments
105-
def write_then_readinto(self, out_buffer, in_buffer,
105+
def write_then_readinto(self, out_buffer, in_buffer, *,
106106
out_start=0, out_end=None, in_start=0, in_end=None, stop=True):
107107
"""
108108
Write the bytes from ``out_buffer`` to the device, then immediately

0 commit comments

Comments
 (0)