Skip to content

Commit

Permalink
CI: Suppress flake8 issue for swapped operand test
Browse files Browse the repository at this point in the history
Add "noqa: F811" comment similar to other tests with `rng`.
  • Loading branch information
trundev committed Dec 11, 2024
1 parent 5fb1081 commit 568087f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clifford/test/test_clifford.py
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ def test_right_multiplication_matrix(self, algebra, rng): # noqa: F811
operator.xor, # outer product
operator.or_, # inner product
])
def test_swapped_operands(self, algebra, rng, func):
def test_swapped_operands(self, algebra, rng, func): # noqa: F811
layout = algebra
for _ in range(10):
mv = layout.randomMV(rng=rng)
Expand Down

0 comments on commit 568087f

Please sign in to comment.