Skip to content

Commit

Permalink
fix: Rebase leftover
Browse files Browse the repository at this point in the history
  • Loading branch information
alecandido committed Feb 21, 2025
1 parent dcd0b7d commit 8af95d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/qibolab/_core/instruments/qblox/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
from . import ast_
4 changes: 2 additions & 2 deletions src/qibolab/_core/instruments/qblox/ast_.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def asm(self, key_width: Optional[int] = None) -> str:
key = self.keyword()
if key_width is None:
key_width = len(key)
instr = f"{key:<{key_width+1}}"
instr = f"{key:<{key_width + 1}}"
return (instr + ",".join([str(a) for a in self.args])).strip()


Expand Down Expand Up @@ -680,7 +680,7 @@ def asm(
instr_name_width = len(self.instruction.keyword())
if instr_width is None:
instr_width = len(self.instruction.asm(instr_name_width))
code = f"{label:<{label_width+2}}{self.instruction.asm(instr_name_width):<{instr_width+1}}"
code = f"{label:<{label_width + 2}}{self.instruction.asm(instr_name_width):<{instr_width + 1}}"
if self.comment is None:
return code
comment = _format_comment(
Expand Down

0 comments on commit 8af95d1

Please sign in to comment.