diff options
Diffstat (limited to 'pyecsca/ec/params.py')
| -rw-r--r-- | pyecsca/ec/params.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyecsca/ec/params.py b/pyecsca/ec/params.py index d5477b6..6693581 100644 --- a/pyecsca/ec/params.py +++ b/pyecsca/ec/params.py @@ -229,7 +229,7 @@ def _create_params(curve, coords, infty): raise ValueError( f"This coordinate model couldn't be loaded due to an unsupported assumption ({assumption_string})." ) - numerator, denominator = expr.as_numer_denom() + numerator, _ = expr.as_numer_denom() poly = Poly(numerator, symbols(param), domain=k) roots = poly.ground_roots() for root in roots: |
