Skip to content

Commit

Permalink
Merge pull request #6286 from LMFDB/autopep8-patches
Browse files Browse the repository at this point in the history
Fixes by autopep8 action
  • Loading branch information
roed314 authored Dec 3, 2024
2 parents 288550b + a6212b5 commit 9a24358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lmfdb/ecnf/WebEllipticCurve.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ def make_E(self):
try:
self.gens = [web_point(parse_point(K, P)) for P in self.gens]
self.gens_and_heights = list(zip(self.gens,self.heights))
self.gens_and_heights.sort(key = lambda Ph: Ph[1])
self.gens_and_heights.sort(key=lambda Ph: Ph[1])
except AttributeError:
self.gens = []
self.gens_and_heights = []
Expand Down

0 comments on commit 9a24358

Please sign in to comment.