Skip to content

Commit a6212b5

Browse files
authored
autopep8 action fixes
1 parent 288550b commit a6212b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lmfdb/ecnf/WebEllipticCurve.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ def make_E(self):
577577
try:
578578
self.gens = [web_point(parse_point(K, P)) for P in self.gens]
579579
self.gens_and_heights = list(zip(self.gens,self.heights))
580-
self.gens_and_heights.sort(key = lambda Ph: Ph[1])
580+
self.gens_and_heights.sort(key=lambda Ph: Ph[1])
581581
except AttributeError:
582582
self.gens = []
583583
self.gens_and_heights = []

0 commit comments

Comments
 (0)