aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 f056bd8..15d150c 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) # noqa: known issue
+ self.constants = frozenset(constants) # type: ignore # (known issue)
self.compiled = compile(self.code, "", mode="exec")
def __to_name(self, node):