We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa2b868 commit b065422Copy full SHA for b065422
adafruit_pioasm.py
@@ -106,7 +106,9 @@ def assemble(text_program):
106
try:
107
assembled[-1] |= CONDITIONS.index(instruction[1]) << 5
108
except ValueError as exc:
109
- raise SyntaxError(f"Invalid jmp condition {instruction[1]}") from exc
+ raise SyntaxError(
110
+ f"Invalid jmp condition {instruction[1]}"
111
+ ) from exc
112
113
elif instruction[0] == "wait":
114
# instr delay p sr index
0 commit comments