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 1 commit 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
2 changes: 0 additions & 2 deletions adafruit_mpu6050.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
from adafruit_register.i2c_bits import RWBits
import adafruit_bus_device.i2c_device as i2c_device

# pylint: disable=bad-whitespace
_MPU6050_DEFAULT_ADDRESS = 0x68 # MPU6050 default i2c address w/ AD0 low
_MPU6050_DEVICE_ID = 0x68 # The correct MPU6050_WHO_AM_I value

Expand All @@ -78,7 +77,6 @@
_MPU6050_WHO_AM_I = 0x75 # Divice ID register

STANDARD_GRAVITY = 9.80665
# pylint: enable=bad-whitespace


class Range: # pylint: disable=too-few-public-methods
Expand Down