Skip to content

Commit 97620cc

Browse files
committed
missed a captial
1 parent 8adab0f commit 97620cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/schemes/hyperelliptic_curves/constructor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def HyperellipticCurve(f, h=0, names=None, PP=None, check_squarefree=True):
205205
# rather than f and h, one of which might be constant.
206206
F = h**2 + 4 * f
207207
if not isinstance(F, Polynomial):
208-
raise TypeError(f"Arguments {f = } and {h = } must be polynomials")
208+
raise TypeError(f"arguments {f = } and {h = } must be polynomials")
209209
P = F.parent()
210210
f = P(f)
211211
h = P(h)

0 commit comments

Comments
 (0)