Skip to content

Commit 92ad155

Browse files
author
Matthias Koeppe
committed
src/sage/schemes/elliptic_curves/mod_poly.py: Fix pycodestyle E305
1 parent 272582b commit 92ad155

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/sage/schemes/elliptic_curves/mod_poly.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
_cache_bound = 100
2525
_cache = dict()
2626

27+
2728
def classical_modular_polynomial(l, j=None):
2829
r"""
2930
Return the classical modular polynomial `\Phi_\ell`, either as a
@@ -143,6 +144,7 @@ def classical_modular_polynomial(l, j=None):
143144
# and simply evaluating it.
144145
return classical_modular_polynomial(l)(j, Y)
145146

147+
146148
def _set_cache_bound(bnd):
147149
r"""
148150
Internal helper function to allow setting the caching cutoff for
@@ -164,4 +166,5 @@ def _set_cache_bound(bnd):
164166
global _cache_bound
165167
_cache_bound = bnd
166168

169+
167170
classical_modular_polynomial.set_cache_bound = _set_cache_bound

0 commit comments

Comments
 (0)