Skip to content

Commit b12a11d

Browse files
authored
Merge pull request #38 from FoamyGuy/pylintrc
pylintrc ignore imports. run black format
2 parents f4789ae + c79d3c0 commit b12a11d

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ ignore-comments=yes
250250
ignore-docstrings=yes
251251

252252
# Ignore imports when computing similarities.
253-
ignore-imports=no
253+
ignore-imports=yes
254254

255255
# Minimum lines number of a similarity.
256256
min-similarity-lines=4

adafruit_lsm6ds/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ class LSM6DS: # pylint: disable=too-many-instance-attributes
163163

164164
"""Driver for the LSM6DSOX 6-axis accelerometer and gyroscope.
165165
166-
:param ~busio.I2C i2c_bus: The I2C bus the LSM6DSOX is connected to.
167-
:param address: The I2C slave address of the sensor
166+
:param ~busio.I2C i2c_bus: The I2C bus the LSM6DSOX is connected to.
167+
:param address: The I2C slave address of the sensor
168168
169169
"""
170170

adafruit_lsm6ds/ism330dhcx.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ class ISM330DHCX(LSM6DS): # pylint: disable=too-many-instance-attributes
1414

1515
"""Driver for the LSM6DS33 6-axis accelerometer and gyroscope.
1616
17-
:param ~busio.I2C i2c_bus: The I2C bus the LSM6DS33 is connected to.
18-
:param address: The I2C slave address of the sensor
17+
:param ~busio.I2C i2c_bus: The I2C bus the LSM6DS33 is connected to.
18+
:param address: The I2C slave address of the sensor
1919
2020
"""
2121

adafruit_lsm6ds/lsm6ds33.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ class LSM6DS33(LSM6DS): # pylint: disable=too-many-instance-attributes
1111

1212
"""Driver for the LSM6DS33 6-axis accelerometer and gyroscope.
1313
14-
:param ~busio.I2C i2c_bus: The I2C bus the LSM6DS33 is connected to.
15-
:param address: The I2C slave address of the sensor
14+
:param ~busio.I2C i2c_bus: The I2C bus the LSM6DS33 is connected to.
15+
:param address: The I2C slave address of the sensor
1616
1717
"""
1818

adafruit_lsm6ds/lsm6dso32.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ class LSM6DSO32(LSM6DS): # pylint: disable=too-many-instance-attributes
1111

1212
"""Driver for the LSM6DSO32 6-axis accelerometer and gyroscope.
1313
14-
:param ~busio.I2C i2c_bus: The I2C bus the LSM6DSO32 is connected to.
15-
:param address: The I2C slave address of the sensor
14+
:param ~busio.I2C i2c_bus: The I2C bus the LSM6DSO32 is connected to.
15+
:param address: The I2C slave address of the sensor
1616
1717
"""
1818

adafruit_lsm6ds/lsm6dsox.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ class LSM6DSOX(LSM6DS): # pylint: disable=too-many-instance-attributes
1111

1212
"""Driver for the LSM6DSOX 6-axis accelerometer and gyroscope.
1313
14-
:param ~busio.I2C i2c_bus: The I2C bus the LSM6DSOX is connected to.
15-
:param address: The I2C slave address of the sensor
14+
:param ~busio.I2C i2c_bus: The I2C bus the LSM6DSOX is connected to.
15+
:param address: The I2C slave address of the sensor
1616
1717
"""
1818

0 commit comments

Comments
 (0)