Black reformat
This commit is contained in:
parent
fa2b8689ce
commit
b065422813
1 changed files with 3 additions and 1 deletions
|
|
@ -106,7 +106,9 @@ def assemble(text_program):
|
|||
try:
|
||||
assembled[-1] |= CONDITIONS.index(instruction[1]) << 5
|
||||
except ValueError as exc:
|
||||
raise SyntaxError(f"Invalid jmp condition {instruction[1]}") from exc
|
||||
raise SyntaxError(
|
||||
f"Invalid jmp condition {instruction[1]}"
|
||||
) from exc
|
||||
|
||||
elif instruction[0] == "wait":
|
||||
# instr delay p sr index
|
||||
|
|
|
|||
Loading…
Reference in a new issue