From 7a45a754cacf4cf6e20ade759fd6c62a36f1d81c Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 09:23:13 +0000 Subject: [PATCH] fix: resolve CI/CD issues and circular imports --- src/auto_readme/templates/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/auto_readme/templates/__init__.py b/src/auto_readme/templates/__init__.py index c2021be..d3e1f3f 100644 --- a/src/auto_readme/templates/__init__.py +++ b/src/auto_readme/templates/__init__.py @@ -112,8 +112,7 @@ This project uses: --- -*Generated by Auto README Generator on {{ generated_at }}* -""", +*Generated by Auto README Generator on {{ generated_at }}*""", } def __init__(self, custom_template_dir: Optional[Path] = None): @@ -288,7 +287,7 @@ This project uses: "- Lint with `npm run lint`", ]) - return "\n".join(guidelines) + return "\\n".join(guidelines) class TemplateManager: