aboutsummaryrefslogtreecommitdiff
path: root/pyecsca/ec/op.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyecsca/ec/op.py')
-rw-r--r--pyecsca/ec/op.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyecsca/ec/op.py b/pyecsca/ec/op.py
index 5f03b50..f056bd8 100644
--- a/pyecsca/ec/op.py
+++ b/pyecsca/ec/op.py
@@ -102,7 +102,7 @@ class CodeOp:
self.operator = self.__to_op(op, self.left, self.right)
self.parameters = frozenset(params)
self.variables = frozenset(variables)
- self.constants = frozenset(constants)
+ self.constants = frozenset(constants) # noqa: known issue
self.compiled = compile(self.code, "", mode="exec")
def __to_name(self, node):