Skip to content

Commit e16e42c

Browse files
committed
Fix typing override issue
1 parent 06641fd commit e16e42c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bloqade/cirq_utils/noise/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def validate_moments(moments: Iterable[cirq.Moment]):
121121
)
122122

123123
def parallel_cz_errors(
124-
self, ctrls: list[int], qargs: list[int], rest: list[int]
124+
self, ctrls: Sequence[int], qargs: Sequence[int], rest: Sequence[int]
125125
) -> dict[tuple[float, float, float, float], list[int]]:
126126
raise NotImplementedError(
127127
"This noise model doesn't support rewrites on bloqade kernels, but should be used with cirq."

0 commit comments

Comments
 (0)