@@ -227,10 +227,11 @@ def main(args):
227227 for ff in truth_files
228228 ]
229229 for tt , time in enumerate (times ):
230- with Dataset (truth_ens [instance ][tt ]) as truth , Dataset (
231- ref_ens [instance ][tt ]
232- ) as ref , Dataset (test_ens [instance ][tt ]) as test :
233-
230+ with (
231+ Dataset (truth_ens [instance ][tt ]) as truth ,
232+ Dataset (ref_ens [instance ][tt ]) as ref ,
233+ Dataset (test_ens [instance ][tt ]) as test ,
234+ ):
234235 truth_plt , truth_ps = pressure_layer_thickness (truth )
235236 ref_plt , ref_ps = pressure_layer_thickness (ref )
236237 test_plt , test_ps = pressure_layer_thickness (test )
@@ -809,7 +810,6 @@ def boxplot_delta_rmsd(args, delta_rmsd, null_hypothesis, img_file_format):
809810 list (ax1 .get_yticklabels ()),
810811 list (ax2 .get_yticklabels ()),
811812 ):
812-
813813 land_var_color = pf_color_picker [
814814 null_hypothesis [
815815 (null_hypothesis ["seconds" ] == time )
@@ -996,7 +996,6 @@ def errorbars_delta_rmsd(args, delta_rmsd, null_hypothesis, img_file_format):
996996 for ii , var1 , var2 in zip (
997997 yvals - 1 , list (ax1 .get_yticklabels ()), list (ax2 .get_yticklabels ())
998998 ):
999-
1000999 var1 .set_color (land_colors [ii ])
10011000 var2 .set_color (ocean_colors [ii ])
10021001
0 commit comments