Skip to content

Commit 279ad3b

Browse files
committed
small fix
1 parent 46f2ccb commit 279ad3b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

validphys2/src/validphys/hyperoptplot.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -587,8 +587,7 @@ def hyperopt_table(hyperopt_dataframe):
587587
drop_keys += [f"layer_{idx}" for idx in range(1, 5)]
588588

589589
dataframe, _ = hyperopt_dataframe
590-
return dataframe.drop(columns=drop_keys, inplace=False)
591-
.sort_values(by=["hyper_loss_chi2"], inplace=False)
590+
return dataframe.drop(columns=drop_keys, inplace=False).sort_values(by=["hyper_loss_chi2"], inplace=False)
592591

593592

594593
@figure

0 commit comments

Comments
 (0)