Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
grhkm21 committed Jun 20, 2024
1 parent e509fbc commit 641e835
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/sage/schemes/affine/affine_space.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def _latex_(self):
TESTS::
sage: AffineSpace(11, Zp(5), 'y')._latex_() # needs sage.rings.padics
sage: AffineSpace(11, Zp(5), 'y')._latex_() # needs sage.rings.padics
'\\mathbf{A}_{\\Bold{Z}_{5}}^{11}'
"""
return "\\mathbf{A}_{%s}^{%s}" % (latex(self.base_ring()), self.dimension_relative())
Expand Down
2 changes: 1 addition & 1 deletion src/sage/schemes/projective/projective_space.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ def _latex_(self):
TESTS::
sage: ProjectiveSpace(11, Zp(5), 'y')._latex_() # needs sage.rings.padics
sage: ProjectiveSpace(11, Zp(5), 'y')._latex_() # needs sage.rings.padics
'{\\mathbf P}_{\\Bold{Z}_{5}}^{11}'
"""
return "{\\mathbf P}_{%s}^{%s}" % (latex(self.base_ring()), self.dimension_relative())
Expand Down

0 comments on commit 641e835

Please sign in to comment.