|
157 | 157 | "source": [ |
158 | 158 | "# Generate the report\n", |
159 | 159 | "report_type = \"streamlit\"\n", |
160 | | - "report_generator.get_report(dir_path = base_output_dir, report_type = report_type, logger = get_logger(f\"{report_type}_report_basic_example\"))" |
| 160 | + "report_generator.get_report(dir_path = base_output_dir, report_type = report_type, logger = None)" |
161 | 161 | ] |
162 | 162 | }, |
163 | 163 | { |
|
190 | 190 | "source": [ |
191 | 191 | "# Generate the report\n", |
192 | 192 | "report_type = \"html\"\n", |
193 | | - "report_generator.get_report(dir_path = base_output_dir, report_type = report_type, logger = get_logger(f\"{report_type}_report_basic_example\"))" |
| 193 | + "report_generator.get_report(dir_path = base_output_dir, report_type = report_type, logger = None)" |
194 | 194 | ] |
195 | 195 | }, |
196 | 196 | { |
|
246 | 246 | "for section in config[\"sections\"]:\n", |
247 | 247 | " if section[\"title\"] == \"Dataframes\":\n", |
248 | 248 | " for subsection in section[\"subsections\"]:\n", |
249 | | - " if subsection[\"title\"] == \"All_formats\":\n", |
| 249 | + " if subsection[\"title\"] == \"All Formats\":\n", |
250 | 250 | " subsection[\"description\"] = \"This subsection contains example dataframes.\"\n" |
251 | 251 | ] |
252 | 252 | }, |
|
277 | 277 | "for section in config[\"sections\"]:\n", |
278 | 278 | " if section[\"title\"] == \"Plots\":\n", |
279 | 279 | " for subsection in section[\"subsections\"]:\n", |
280 | | - " if subsection[\"title\"] == \"Static_plots\":\n", |
| 280 | + " if subsection[\"title\"] == \"Static Plots\":\n", |
281 | 281 | " subsection[\"components\"].append(vuegen_abst_fig)\n", |
282 | 282 | "\n", |
283 | 283 | "# Save the modified YAML file\n", |
|
300 | 300 | "source": [ |
301 | 301 | "# Test the changes by generarating the report from the modified YAML file\n", |
302 | 302 | "report_type = \"streamlit\"\n", |
303 | | - "report_generator.get_report(config_path = config_path, report_type = report_type, logger = get_logger(f\"{report_type}_report_basic_example_extended\"))" |
| 303 | + "report_generator.get_report(config_path = config_path, report_type = report_type, logger = None)" |
304 | 304 | ] |
305 | 305 | }, |
306 | 306 | { |
|
333 | 333 | "source": [ |
334 | 334 | "# Test the changes by generarating the report from the modified YAML file\n", |
335 | 335 | "report_type = \"html\"\n", |
336 | | - "report_generator.get_report(config_path = config_path, report_type = report_type, logger = get_logger(f\"{report_type}_report_basic_example_extended\"))" |
| 336 | + "report_generator.get_report(config_path = config_path, report_type = report_type, logger = None)" |
337 | 337 | ] |
338 | 338 | } |
339 | 339 | ], |
|
0 commit comments