Skip to content

Commit

Permalink
32686: Format according to lint result
Browse files Browse the repository at this point in the history
  • Loading branch information
guojing0 committed Oct 7, 2022
1 parent 10df9a6 commit c053c2a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/sage/schemes/projective/proj_bdd_height.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def QQ_points_of_bounded_height(dim, bound):
points_of_bounded_height.add(point)
yield point


def IQ_points_of_bounded_height(PN, K, dim, bound):
r"""
Return an iterator of the points in ``self`` of absolute multiplicative
Expand Down Expand Up @@ -151,6 +152,7 @@ def IQ_points_of_bounded_height(PN, K, dim, bound):
points_in_class_a.add(point)
yield point


def points_of_bounded_height(PN, K, dim, bound, prec=53):
r"""
Return an iterator of the points in ``K`` with dimension ``dim`` of
Expand Down Expand Up @@ -218,9 +220,9 @@ def points_of_bounded_height(PN, K, dim, bound, prec=53):

test_matrix = mat
try:
test_matrix.change_ring(QQ)
test_matrix.change_ring(QQ)
except ValueError:
raise ValueError('prec too low.')
raise ValueError('prec too low.')

cut_fund_unit_logs = mat.delete_rows([r])
lll_fund_units = []
Expand Down

0 comments on commit c053c2a

Please sign in to comment.