Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
dakk committed Oct 24, 2023
1 parent 7c32d47 commit 48c3487
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qlasskit/compiler/poccompiler2.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ def compile(self, name, args: Args, returns: Arg, exprs: BoolExpList) -> QCircui

for arg in args:
for arg_b in arg.bitvec:
qi = qc.add_qubit(arg_b)
# qi =
qc.add_qubit(arg_b)
# qc.ancilla_lst.add(qi)

self.expqmap = ExpQMap()
Expand Down

0 comments on commit 48c3487

Please sign in to comment.