Skip to content

Commit 6f6dc7d

Browse files
committed
black
1 parent ad7363a commit 6f6dc7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_funhouse/peripherals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def slider(self):
179179
Return the slider position value in the range of 0.0-1.0 or None if not touched
180180
"""
181181
val = 0
182-
cap_map = (0x01, 0x03, 0x02, 0x06, 0x04, 0x0c, 0x08, 0x18, 0x10)
182+
cap_map = (0x01, 0x03, 0x02, 0x06, 0x04, 0x0C, 0x08, 0x18, 0x10)
183183
for cap in range(5):
184184
if self._ctp[cap + 3].value:
185185
val += 1 << (cap)

0 commit comments

Comments
 (0)