Skip to content

Commit 8973584

Browse files
authored
Update adafruit_pioasm.py
1 parent ef66ca9 commit 8973584

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adafruit_pioasm.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ def assemble(text_program):
5353
sideset_count = int(line.split()[1])
5454
elif line.endswith(":"):
5555
labels[line[:-1]] = len(instructions)
56-
elif line: # Only add as an instruction if the line isn't empty
56+
elif line:
57+
# Only add as an instruction if the line isn't empty
5758
instructions.append(line)
5859

5960
max_delay = 2 ** (5 - sideset_count) - 1

0 commit comments

Comments
 (0)