We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 566628f commit 2d889a4Copy full SHA for 2d889a4
adafruit_mlx90393.py
@@ -200,7 +200,7 @@ class MLX90393: # pylint: disable=too-many-instance-attributes
200
201
"""
202
203
- def __init__(
+ def __init__( # pylint: disable=too-many-arguments
204
self,
205
i2c_bus: I2C,
206
address: int = 0x0C,
@@ -209,7 +209,7 @@ def __init__(
209
filt: int = FILTER_7,
210
oversampling: int = OSR_3,
211
debug: bool = False,
212
- ) -> None: # pylint: disable=too-many-arguments
+ ) -> None:
213
self.i2c_device = I2CDevice(i2c_bus, address)
214
self._debug = debug
215
self._status_last = 0
0 commit comments