Skip to content

Commit 8ef52f0

Browse files
committed
"Reformatted per new black version"
1 parent da31142 commit 8ef52f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_macropad.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -909,8 +909,8 @@ def display_text(
909909

910910
@staticmethod
911911
def _sine_sample(length: int) -> Iterator[int]:
912-
tone_volume = (2 ** 15) - 1
913-
shift = 2 ** 15
912+
tone_volume = (2**15) - 1
913+
shift = 2**15
914914
for i in range(length):
915915
yield int(tone_volume * math.sin(2 * math.pi * (i / length)) + shift)
916916

0 commit comments

Comments
 (0)