Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove bad-whitespace pylint directive #10

Merged
merged 2 commits into from
Aug 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions adafruit_icm20x.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
from adafruit_register.i2c_bit import RWBit, ROBit
from adafruit_register.i2c_bits import RWBits

# pylint: disable=bad-whitespace
_ICM20649_DEFAULT_ADDRESS = 0x68 # icm20649 default i2c address
_ICM20948_DEFAULT_ADDRESS = 0x69 # icm20649 default i2c address
_ICM20649_DEVICE_ID = 0xE1 # Correct content of WHO_AM_I register
Expand Down Expand Up @@ -106,7 +105,8 @@
_ICM20X_RAD_PER_DEG = 0.017453293 # Degrees/s to rad/s multiplier

G_TO_ACCEL = 9.80665
# pylint: enable=bad-whitespace


class CV:
"""struct helper"""

Expand Down