Skip to content

Commit bc8f502

Browse files
committed
Black reformatting
1 parent fe634e7 commit bc8f502

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

examples/esp_atcontrol_cheerlights.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
32
# SPDX-License-Identifier: MIT
43

@@ -95,7 +94,11 @@
9594
green = color >> 8 & 0xFF
9695
blue = color & 0xFF
9796
gamma_corrected = fancy.gamma_adjust(fancy.CRGB(red, green, blue)).pack()
98-
print('Setting LED To: G:{0},R:{1},B:{2},Gamma:{3}'.format(green, red, blue, gamma_corrected))
97+
print(
98+
"Setting LED To: G:{0},R:{1},B:{2},Gamma:{3}".format(
99+
green, red, blue, gamma_corrected
100+
)
101+
)
99102
pixels.fill(gamma_corrected)
100103
last_value = value
101104
response = None

examples/esp_atcontrol_countviewer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,3 @@ def chime_light():
199199
print("GC MEM:{0}".format(gc.mem_free())) # pylint: disable=no-member
200200
print("Sleeping for: {0} Seconds".format(TIME_BETWEEN_QUERY))
201201
time.sleep(TIME_BETWEEN_QUERY)
202-

examples/esp_atcontrol_localtime.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,3 @@
9696
print(time.localtime())
9797
print("Sleeping for: {0} Seconds".format(sleep_duration))
9898
time.sleep(sleep_duration)
99-

0 commit comments

Comments
 (0)