Skip to content

Commit feb805e

Browse files
committed
blacken
1 parent 46b524f commit feb805e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_msa301.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ class TapDuration: # pylint: disable=too-few-public-methods,too-many-instance-a
207207
class MSA301: # pylint: disable=too-many-instance-attributes
208208
"""Driver for the MSA301 Accelerometer.
209209
210-
:param ~busio.I2C i2c_bus: The I2C bus the MSA is connected to.
210+
:param ~busio.I2C i2c_bus: The I2C bus the MSA is connected to.
211211
"""
212212

213213
_part_id = ROUnaryStruct(_MSA301_REG_PARTID, "<B")
@@ -230,7 +230,7 @@ def __init__(self, i2c_bus):
230230
_disable_y = RWBit(_MSA301_REG_ODR, 6)
231231
_disable_z = RWBit(_MSA301_REG_ODR, 5)
232232

233-
#_xyz_raw = ROBits(48, _MSA301_REG_OUT_X_L, 0, 6)
233+
# _xyz_raw = ROBits(48, _MSA301_REG_OUT_X_L, 0, 6)
234234
_xyz_raw = Struct(_MSA301_REG_OUT_X_L, "<hhh")
235235

236236
# tap INT enable and status

0 commit comments

Comments
 (0)