Skip to content

Commit 5a71959

Browse files
authored
Merge pull request #59 from jepler/remove-bad-whitespace-directive
remove bad-whitespace pylint directive
2 parents 1ffc009 + 8ec60b6 commit 5a71959

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

adafruit_ads1x15/ads1x15.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
from micropython import const
3636
from adafruit_bus_device.i2c_device import I2CDevice
3737

38-
# pylint: disable=bad-whitespace
3938
_ADS1X15_DEFAULT_ADDRESS = const(0x48)
4039
_ADS1X15_POINTER_CONVERSION = const(0x00)
4140
_ADS1X15_POINTER_CONFIG = const(0x01)
@@ -50,7 +49,6 @@
5049
8: 0x0800,
5150
16: 0x0A00,
5251
}
53-
# pylint: enable=bad-whitespace
5452

5553

5654
class Mode:

adafruit_ads1x15/analog_in.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,8 @@
2828
* Author(s): Carter Nelson, adapted from MCP3xxx original by Brent Rubell
2929
"""
3030

31-
# pylint: disable=bad-whitespace
3231
_ADS1X15_DIFF_CHANNELS = {(0, 1): 0, (0, 3): 1, (1, 3): 2, (2, 3): 3}
3332
_ADS1X15_PGA_RANGE = {2 / 3: 6.144, 1: 4.096, 2: 2.048, 4: 1.024, 8: 0.512, 16: 0.256}
34-
# pylint: enable=bad-whitespace
3533

3634

3735
class AnalogIn:

0 commit comments

Comments
 (0)