Skip to content

Commit

Permalink
removed old TODO comment
Browse files Browse the repository at this point in the history
  • Loading branch information
comane committed Aug 1, 2024
1 parent e5583f6 commit f992b98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions validphys2/src/validphys/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,7 @@ def fits_chi2_table(
edf = fits_groups_chi2_table.set_index(expanded_index)
ddf = fits_datasets_chi2_table
dfs = []
# TODO: Better way to do the merge preserving the order?

for lv in lvs:
dfs.append(pd.concat((edf.loc[lv], ddf.loc[lv]), copy=False, axis=0))
if show_total:
Expand Down Expand Up @@ -1170,7 +1170,7 @@ def fits_nsigma_table(
edf = fits_groups_nsigma_table.set_index(expanded_index)
ddf = fits_datasets_nsigma_table
dfs = []
# TODO: Better way to do the merge preserving the order?

for lv in lvs:
dfs.append(pd.concat((edf.loc[lv], ddf.loc[lv]), copy=False, axis=0))
if show_total:
Expand Down

0 comments on commit f992b98

Please sign in to comment.