Skip to content

Commit 0d8c5f8

Browse files
committed
📝 Docs: Add None logger parameter on demo notebooks, until the new package release is done and the pip vuegen adds latest changes
1 parent 1ffb55a commit 0d8c5f8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

‎docs/vuegen_basic_case_study.ipynb‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
"source": [
158158
"# Generate the report\n",
159159
"report_type = \"streamlit\"\n",
160-
"report_generator.get_report(dir_path = base_output_dir, report_type = report_type)"
160+
"report_generator.get_report(dir_path = base_output_dir, report_type = report_type, logger = None)"
161161
]
162162
},
163163
{
@@ -190,7 +190,7 @@
190190
"source": [
191191
"# Generate the report\n",
192192
"report_type = \"html\"\n",
193-
"report_generator.get_report(dir_path = base_output_dir, report_type = report_type)"
193+
"report_generator.get_report(dir_path = base_output_dir, report_type = report_type, logger = None)"
194194
]
195195
},
196196
{
@@ -300,7 +300,7 @@
300300
"source": [
301301
"# Test the changes by generarating the report from the modified YAML file\n",
302302
"report_type = \"streamlit\"\n",
303-
"report_generator.get_report(config_path = config_path, report_type = report_type)"
303+
"report_generator.get_report(config_path = config_path, report_type = report_type, logger = None)"
304304
]
305305
},
306306
{
@@ -333,7 +333,7 @@
333333
"source": [
334334
"# Test the changes by generarating the report from the modified YAML file\n",
335335
"report_type = \"html\"\n",
336-
"report_generator.get_report(config_path = config_path, report_type = report_type)"
336+
"report_generator.get_report(config_path = config_path, report_type = report_type, logger = None)"
337337
]
338338
}
339339
],

‎docs/vuegen_case_study_earth_microbiome.ipynb‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1379,7 +1379,7 @@
13791379
"source": [
13801380
"# Generate the report\n",
13811381
"report_type = \"streamlit\"\n",
1382-
"report_generator.get_report(dir_path = base_output_dir, report_type = report_type)"
1382+
"report_generator.get_report(dir_path = base_output_dir, report_type = report_type, logger = None)"
13831383
]
13841384
},
13851385
{
@@ -1412,7 +1412,7 @@
14121412
"source": [
14131413
"# Generate the report\n",
14141414
"report_type = \"html\"\n",
1415-
"report_generator.get_report(dir_path = base_output_dir, report_type = report_type)"
1415+
"report_generator.get_report(dir_path = base_output_dir, report_type = report_type, logger = None)"
14161416
]
14171417
},
14181418
{
@@ -1558,7 +1558,7 @@
15581558
"source": [
15591559
"# Test the changes by generarating the report from the modified YAML file\n",
15601560
"report_type = \"streamlit\"\n",
1561-
"report_generator.get_report(config_path = config_path, report_type = report_type)"
1561+
"report_generator.get_report(config_path = config_path, report_type = report_type, logger = None)"
15621562
]
15631563
},
15641564
{
@@ -1591,7 +1591,7 @@
15911591
"source": [
15921592
"# Test the changes by generarating the report from the modified YAML file\n",
15931593
"report_type = \"html\"\n",
1594-
"report_generator.get_report(config_path = config_path, report_type = report_type)"
1594+
"report_generator.get_report(config_path = config_path, report_type = report_type, logger = None)"
15951595
]
15961596
}
15971597
],

0 commit comments

Comments
 (0)