We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cc06c0 commit 57948ecCopy full SHA for 57948ec
src/vuegen/streamlit_reportview.py
@@ -429,7 +429,7 @@ def _generate_home_section(
429
430
# Write the home page content to a Python file
431
home_page_path = Path(home_dir_path) / "Homepage.py"
432
- with open(home_page_path, "w") as home_page:
+ with open(home_page_path, "w", encoding="utf-8") as home_page:
433
home_page.write("\n".join(home_content))
434
self.report.logger.info(f"Home page content written to '{home_page_path}'.")
435
0 commit comments