From 568087f6b76c3d9fb04ab3817b64c09362621892 Mon Sep 17 00:00:00 2001 From: Todor Trundev Date: Wed, 11 Dec 2024 16:04:04 +0200 Subject: [PATCH] CI: Suppress flake8 issue for swapped operand test Add "noqa: F811" comment similar to other tests with `rng`. --- clifford/test/test_clifford.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clifford/test/test_clifford.py b/clifford/test/test_clifford.py index ea7042ce..f56cca20 100644 --- a/clifford/test/test_clifford.py +++ b/clifford/test/test_clifford.py @@ -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)