Skip to content

Commit

Permalink
be consistent with return statements
Browse files Browse the repository at this point in the history
  • Loading branch information
bencrts committed May 8, 2024
1 parent 969828f commit 364d893
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion estimator/reduction.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,12 @@ def _short_vectors_sieve(self, beta, d, N=None, B=None, preprocess=True, sieve_d
# arbitrary choice
if c > 2**1000:
c = oo
return (rho, oo, oo, sieve_dim)
return (
rho,
oo,
oo,
sieve_dim,
)

return (
rho,
Expand Down

0 comments on commit 364d893

Please sign in to comment.