Skip to content

Commit 055e867

Browse files
committed
black code format
1 parent 7d3d9c0 commit 055e867

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

adafruit_pcf8591/pcf8591.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def _half_read(self, channel):
8888
def read(self, channel):
8989
"""Read an analog value from one of the four ADC inputs
9090
91-
param: :channel The single-ended ADC channel to read from, 0 thru 3
91+
param: :channel The single-ended ADC channel to read from, 0 thru 3
9292
"""
9393
if channel < 0 or channel > 3:
9494
raise ValueError("channel must be from 0-3")
@@ -114,9 +114,9 @@ def dac_enabled(self, enable_dac):
114114
def write(self, value):
115115
"""Writes a uint8_t value to the DAC output
116116
117-
param: :output The value to write: 0 is GND and 65535 is VCC
117+
param: :output The value to write: 0 is GND and 65535 is VCC
118118
119-
"""
119+
"""
120120

121121
self._buffer = bytearray(2)
122122
if self._dac_enabled:

0 commit comments

Comments
 (0)