Skip to content

Commit 560cb82

Browse files
committed
pylint
1 parent 539ad11 commit 560cb82

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

adafruit_pcf8523.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,12 @@ class PCF8523:
105105
"""True for high oscillator capacitance (12.5pF), otherwise lower (7pF)"""
106106

107107
calibration_mode = i2c_bit.RWBit(0x0E, 7)
108-
"""False to offset every 2 hours (1 LSB = 4.340ppm); True to offset every minute (1 LSB = 4.069ppm). The factory default, False, consumes less power"""
108+
"""False to offset every 2 hours (1 LSB = 4.340ppm); True to offset every
109+
minute (1 LSB = 4.069ppm). The default, False, consumes less power"""
109110

110111
calibration = i2c_bits.RWBits(7, 0xE, 0, signed=True)
111-
"""Calibration offset to apply, from -64 to +63. See the PCF8523 datasheet figure 18 for the offset calibration calculation workflow."""
112+
"""Calibration offset to apply, from -64 to +63. See the PCF8523 datasheet
113+
figure 18 for the offset calibration calculation workflow."""
112114

113115
def __init__(self, i2c_bus):
114116
self.i2c_device = I2CDevice(i2c_bus, 0x68)

0 commit comments

Comments
 (0)