Skip to content

Commit

Permalink
sagemathgh-39607: add missing parenthesis in magma conversion file
Browse files Browse the repository at this point in the history
    
as signaled by Max A.

### 📝 Checklist

- [x] The title is concise and informative.
- [x] The description explains in detail what this PR is about.
- [ ] I have linked a relevant issue or discussion.
- [ ] I have created tests covering the changes.
- [ ] I have updated the documentation and checked the documentation
preview.
    
URL: sagemath#39607
Reported by: Frédéric Chapoton
Reviewer(s): Dima Pasechnik
  • Loading branch information
Release Manager committed Mar 2, 2025
2 parents 35a4250 + 360abc9 commit 095a601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/ext_data/magma/sage/basic.m
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ intrinsic Sage(X::RngPad) -> MonStgElt, BoolElt
{p-adic rings, either free precision model or exact model}
prec := Precision(X);
if Type(prec) eq Infty then
return Sprintf("Zp(%o, %o, 'relaxed')", Sage(Prime(X)), Sage(prec), false;
return Sprintf("Zp(%o, %o, 'relaxed')", Sage(Prime(X)), Sage(prec)), false;
else
return Sprintf("Zp(%o, %o, 'capped-abs')", Sage(Prime(X)), Sage(prec)), false;
end if;
Expand Down

0 comments on commit 095a601

Please sign in to comment.