@@ -1063,7 +1063,9 @@ def add_run_plots(self, data: dict[Any, Any], plot_functions: list[Callable]) ->
10631063 for func in plot_functions :
10641064 plot_html , plot_name , anchor , description , helptext , plot_data = func (data , self .run_color )
10651065 if plot_html is not None :
1066- self .add_section (name = plot_name , plot = plot_html , anchor = anchor , description = description , helptext = helptext )
1066+ self .add_section (
1067+ name = plot_name , plot = plot_html , anchor = anchor , description = description , helptext = helptext
1068+ )
10671069 self .write_data_file (plot_data , f"base2fastq:{ plot_name } " )
10681070
10691071 def add_sample_plots (
@@ -1083,5 +1085,7 @@ def add_sample_plots(
10831085 data , group_lookup , project_lookup , self .sample_color
10841086 )
10851087 if plot_html is not None :
1086- self .add_section (name = plot_name , plot = plot_html , anchor = anchor , description = description , helptext = helptext )
1088+ self .add_section (
1089+ name = plot_name , plot = plot_html , anchor = anchor , description = description , helptext = helptext
1090+ )
10871091 self .write_data_file (plot_data , f"base2fastq:{ plot_name } " )
0 commit comments