Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
dakk committed Nov 14, 2023
1 parent 55e4350 commit c7b3e7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qlasskit/types/qint.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def add(cls, tleft: TExp, tright: TExp) -> TExp:
return (cls if cls.BIT_SIZE > tleft[0].BIT_SIZE else tleft[0], sums) # type: ignore

@classmethod
def mul(cls, tleft: TExp, tright: TExp) -> TExp:
def mul(cls, tleft: TExp, tright: TExp) -> TExp: # noqa: C901
# TODO: use RGQFT multiplier
n = len(tleft[1])
m = len(tright[1])
Expand Down

0 comments on commit c7b3e7b

Please sign in to comment.