Skip to content

Commit

Permalink
Add missing inline type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
mtreinish committed Sep 12, 2023
1 parent ba5e587 commit 29b9e7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def __init__(self, schedule_idle_qubits: bool = False) -> None:
self._dirty_qubits: Set[Qubit] = set()
# Qubits that are dirty in the circuit.
self._schedule_idle_qubits = schedule_idle_qubits
self._idle_qubits = set()
self._idle_qubits: Set[Qubit] = set()
super().__init__()

def run(self, dag: DAGCircuit) -> DAGCircuit:
Expand Down

0 comments on commit 29b9e7b

Please sign in to comment.