Skip to content

Commit 91c535f

Browse files
types
1 parent ec7f5fc commit 91c535f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

qualtran/bloqs/arithmetic/comparison.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1372,8 +1372,9 @@ def build_composite_bloq(
13721372

13731373
def build_call_graph(self, ssa: 'SympySymbolAllocator') -> 'BloqCountDictT':
13741374
dtype = attrs.evolve(self.dtype, bitsize=self.dtype.bitsize + 1)
1375+
counts: 'BloqCountDictT'
13751376
if isinstance(self.dtype, QUInt):
1376-
counts: 'BloqCountDictT' = {BitwiseNot(dtype): 3}
1377+
counts = {BitwiseNot(dtype): 3}
13771378
else:
13781379
counts = {BitwiseNot(dtype): 2, BitwiseNot(QUInt(dtype.bitsize)): 1}
13791380

0 commit comments

Comments
 (0)