Skip to content

Commit 4ceb54b

Browse files
committed
Black
1 parent 8973584 commit 4ceb54b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_pioasm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def assemble(text_program):
6060
max_delay = 2 ** (5 - sideset_count) - 1
6161
assembled = []
6262
for instruction in instructions:
63-
# print(instruction)
63+
# print(instruction)
6464
instruction = instruction.split()
6565
delay = 0
6666
if instruction[-1].endswith("]"): # Delay
@@ -163,6 +163,6 @@ def assemble(text_program):
163163
else:
164164
raise RuntimeError("Unknown instruction:" + instruction)
165165
assembled[-1] |= delay << 8
166-
# print(hex(assembled[-1]))
166+
# print(hex(assembled[-1]))
167167

168168
return array.array("H", assembled)

0 commit comments

Comments
 (0)