We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 288550b commit a6212b5Copy full SHA for a6212b5
lmfdb/ecnf/WebEllipticCurve.py
@@ -577,7 +577,7 @@ def make_E(self):
577
try:
578
self.gens = [web_point(parse_point(K, P)) for P in self.gens]
579
self.gens_and_heights = list(zip(self.gens,self.heights))
580
- self.gens_and_heights.sort(key = lambda Ph: Ph[1])
+ self.gens_and_heights.sort(key=lambda Ph: Ph[1])
581
except AttributeError:
582
self.gens = []
583
self.gens_and_heights = []
0 commit comments