Fix PEP8 compliance
This commit is contained in:
parent
c20d13cdcb
commit
e9d5fdb1ff
1 changed files with 2 additions and 1 deletions
|
|
@ -69,5 +69,6 @@ while True:
|
|||
for i in range(0, len(strip)):
|
||||
strip[i] = wheel(vlvl)
|
||||
# Set strip brightness based oncode audio level
|
||||
strip.brightness = float(remapRangeSafe(lvl, 50, 255, 0, maxbrt)) / 255.0
|
||||
brightness = remapRangeSafe(lvl, 50, 255, 0, maxbrt)
|
||||
strip.brightness = float(brightness) / 255.0
|
||||
strip.show()
|
||||
|
|
|
|||
Loading…
Reference in a new issue