Skip to content

Commit 689bd4b

Browse files
authored
removed 8 spaces
Travis being picky.
1 parent 3877382 commit 689bd4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_tlc5947.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def _get_gs_value(self, channel):
170170
# Disable should be removed when refactor can be tested
171171
if (channel < 0) or (channel >= _CHANNELS * self._n):
172172
raise ValueError(
173-
"channel {0} not available with {1} board(s).".format(channel, self._n))
173+
"channel {0} not available with {1} board(s).".format(channel, self._n))
174174
# Invert channel position as the last channel needs to be written first.
175175
# I.e. is in the first position of the shift registr.
176176
channel = _CHANNELS * self._n - 1 - channel
@@ -197,7 +197,7 @@ def _get_gs_value(self, channel):
197197
def _set_gs_value(self, channel, val):
198198
if (channel < 0) or (channel >= _CHANNELS * self._n):
199199
raise ValueError(
200-
"channel {0} not available with {1} board(s).".format(channel, self._n))
200+
"channel {0} not available with {1} board(s).".format(channel, self._n))
201201
if (val < 0) or (val > 4095):
202202
raise ValueError("PWM intensity {0} outside supported range [0;4095]".format(val))
203203

0 commit comments

Comments
 (0)