Skip to content

Commit 4ee852d

Browse files
committed
Line wrap for lint.
1 parent 9dfacab commit 4ee852d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adafruit_register/i2c_struct_array.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ def __get__(self, obj, objtype=None):
100100
# initializer and then cached on the object itself. That way its lifetime is tied to the
101101
# lifetime of the object itself.
102102
if not hasattr(obj, self.array_id):
103-
setattr(obj, self.array_id, _BoundStructArray(obj, self.address, self.format, self.count))
103+
setattr(obj, self.array_id,
104+
_BoundStructArray(obj, self.address, self.format, self.count))
104105
return getattr(obj, self.array_id)
105106

106107
def __set__(self, obj, value):

0 commit comments

Comments
 (0)