Skip to content

Commit f53c08a

Browse files
committed
Fixed line that was too long
1 parent 2bb1050 commit f53c08a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adafruit_ads1x15/analog_in.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ def __init__(self, ads, positive_pin, negative_pin=None):
7070
@property
7171
def value(self):
7272
"""Returns the value of an ADC pin as an integer."""
73-
return self._ads.read(self._pin_setting, is_differential=self.is_differential) << (16 - self._ads.bits)
73+
return self._ads.read(self._pin_setting,
74+
is_differential=self.is_differential) << (16 - self._ads.bits)
7475

7576
@property
7677
def voltage(self):

0 commit comments

Comments
 (0)