Skip to content

Commit 0f2be0e

Browse files
authored
Update adafruit_mlx90393.py
Fix lint error
1 parent d6f2ac6 commit 0f2be0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_mlx90393.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ def offset_z(self, offset: int) -> None:
443443
self._off_z = offset
444444

445445
def _set_offset(self, axis: int, offset: int) -> None:
446-
if offset < 0x0000 or offset > 0xFFFF :
446+
if offset < 0x0000 or offset > 0xFFFF:
447447
raise ValueError("Incorrect offset setting.")
448448
if axis == 0:
449449
self.write_reg(_CMD_REG_CONF5, offset)

0 commit comments

Comments
 (0)