Skip to content

Commit 904d8fd

Browse files
committed
🐛 Fix: correct terminal message after execution
1 parent 6a73ea6 commit 904d8fd

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

src/vuegen/utils.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -734,35 +734,33 @@ def print_completion_message(report_type: str):
734734
Prints a formatted completion message after report generation.
735735
"""
736736
border = "─" * 65 # Creates a separator line
737-
print(f"\n{border}\n🎉 Pipeline Execution Complete! 🎉\n")
738-
739737
if report_type == "streamlit":
740738
print(
741739
"""🚀 Streamlit Report Generated!
742740
743741
📂 All scripts to build the Streamlit app are available at:
744-
nf_container_results/streamlit_report/sections
742+
streamlit_report/sections
745743
746744
▶️ To run the Streamlit app, use the following command:
747-
streamlit run nf_container_results/streamlit_report/sections/report_manager.py
745+
streamlit run streamlit_report/sections/report_manager.py
748746
749747
✨ You can extend the report by adding new files to the input directory or updating the config file.
750748
751749
🛠️ Advanced users can modify the Python scripts directly in:
752-
nf_container_results/streamlit_report/sections
750+
streamlit_report/sections
753751
"""
754752
)
755753
else:
756754
print(
757755
f"""🚀 {report_type.capitalize()} Report Generated!
758756
759757
📂 Your {report_type} report is available at:
760-
nf_container_results/quarto_report
758+
quarto_report
761759
762760
✨ You can extend the report by adding new files to the input directory or updating the config file.
763761
764762
🛠️ Advanced users can modify the report template directly in:
765-
nf_container_results/quarto_report/quarto_report.qmd
763+
quarto_report/quarto_report.qmd
766764
"""
767765
)
768766

0 commit comments

Comments
 (0)