Skip to content

Commit dacecbb

Browse files
committed
fix incorrect squin wire address type
1 parent a76d54d commit dacecbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bloqade/analysis/address/lattice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ class AddressWire(Address):
8181

8282
def is_subseteq(self, other: Address) -> bool:
8383
if isinstance(other, AddressWire):
84-
return self.origin_qubit == self.origin_qubit
84+
return self.origin_qubit == other.origin_qubit
8585
return False

0 commit comments

Comments
 (0)