Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarcosta committed Mar 12, 2024
1 parent 49abd59 commit 99e4f70
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lmfdb/modular_curves/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1202,14 +1202,15 @@ def modcurve_data(label):

label_tables_cols = [(label, "gps_gl2zhat_fine", "label")]
if label != coarse_label:
label_tables_cols.append((coarse_label, "gps_gl2zhat_fine", "label")])
label_tables_cols.append((coarse_label, "gps_gl2zhat_fine", "label"))
# modcurve_models
label_tables_cols.append((coarse_label, "modcurve_models", "domain_label"))
label_tables_cols.append((coarse_label, "modcurve_models", "modcurve"))
# modcurve_modelmaps
label_tables_cols.append((coarse_label, "modcurve_modelmaps", "domain_label"))
# modcurve_points
label_tables_cols.append((coarse_label, "modcurve_points", "curve_label"))

labels, tables, label_cols = [elt[0] for elt in label_tables_cols]
print(label_tables_cols)
labels, tables, label_cols = map(list, zip(*label_tables_cols)) # transpose

return datapage(labels, tables, title=f"Modular curve data - {label}", bread=bread, label_cols=label_cols)

0 comments on commit 99e4f70

Please sign in to comment.