Skip to content

Commit 4060fa4

Browse files
committed
🐛 Fix: add quarto_checks into the report_generator funcrtion
1 parent 82fbc1e commit 4060fa4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/vuegen/report_generator.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ def get_report(
1616
config_path: str = None,
1717
dir_path: str = None,
1818
streamlit_autorun: bool = False,
19+
quarto_checks: bool = False,
1920
output_dir: Path = None,
2021
) -> tuple[str, str]:
2122
"""
@@ -97,7 +98,7 @@ def get_report(
9798
)
9899
report_dir = output_dir / "quarto_report"
99100
static_files_dir = report_dir / "static"
100-
quarto_report = QuartoReportView(report=report, report_type=report_type)
101+
quarto_report = QuartoReportView(report=report, report_type=report_type, checks=quarto_checks)
101102
quarto_report.generate_report(
102103
output_dir=report_dir, static_dir=static_files_dir
103104
)

0 commit comments

Comments
 (0)