Skip to content

Commit 2d889a4

Browse files
committed
Reformatted and linted
1 parent 566628f commit 2d889a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_mlx90393.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class MLX90393: # pylint: disable=too-many-instance-attributes
200200
201201
"""
202202

203-
def __init__(
203+
def __init__( # pylint: disable=too-many-arguments
204204
self,
205205
i2c_bus: I2C,
206206
address: int = 0x0C,
@@ -209,7 +209,7 @@ def __init__(
209209
filt: int = FILTER_7,
210210
oversampling: int = OSR_3,
211211
debug: bool = False,
212-
) -> None: # pylint: disable=too-many-arguments
212+
) -> None:
213213
self.i2c_device = I2CDevice(i2c_bus, address)
214214
self._debug = debug
215215
self._status_last = 0

0 commit comments

Comments
 (0)