Skip to content

Commit 3ec03ec

Browse files
committed
"Reformatted per new black version"
1 parent 3e822c3 commit 3ec03ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_pybadger/pybadger_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -707,8 +707,8 @@ def show_qr_code(self, data: str = "https://circuitpython.org") -> None:
707707

708708
@staticmethod
709709
def _sine_sample(length: int) -> Generator[int, None, None]:
710-
tone_volume = (2 ** 15) - 1
711-
shift = 2 ** 15
710+
tone_volume = (2**15) - 1
711+
shift = 2**15
712712
for i in range(length):
713713
yield int(tone_volume * math.sin(2 * math.pi * (i / length)) + shift)
714714

0 commit comments

Comments
 (0)