Skip to content

Commit 9376732

Browse files
committed
Issue#11 Fixing line too long warning
1 parent 0746213 commit 9376732

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_tcs34725.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def cycles(self, val):
269269
self._write_u8(_REGISTER_ENABLE, enable & ~(_ENABLE_AIEN))
270270
else:
271271
if val not in _CYCLES:
272-
raise ValueError("Only the following values for cycles are permitted: {0}".format(_CYCLES))
272+
raise ValueError("Only the following cycles are permitted: {0}".format(_CYCLES))
273273
self._write_u8(_REGISTER_ENABLE, enable | _ENABLE_AIEN)
274274
self._write_u8(_REGISTER_APERS, _CYCLES.index(val))
275275

0 commit comments

Comments
 (0)