Skip to content

Commit 0ccf195

Browse files
author
Matthias Koeppe
committed
src/sage/schemes/elliptic_curves/constructor.py: Fix up
1 parent 0645cb2 commit 0ccf195

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/schemes/elliptic_curves/constructor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ def create_key_and_extra_args(self, x=None, y=None, j=None, minimal_twist=True,
423423
x = x.lhs() - x.rhs()
424424

425425
if isinstance(parent(x), sage.rings.abc.SymbolicRing):
426-
x = x._polynomial_(rings.QQ['x', 'y'])
426+
x = x._polynomial_(QQ['x', 'y'])
427427

428428
if isinstance(x, MPolynomial):
429429
if y is None:

0 commit comments

Comments
 (0)