Add trailing comma to MarkdownConverter parameters for consistency

This commit is contained in:
github-actions[bot]
2025-05-17 03:12:17 +02:00
parent 4aa6d8bbe4
commit 327d3ec83e

View File

@ -390,7 +390,7 @@ def generate_atom_feed(articles: list[dict[Any, Any]], file_name: str) -> str:
article_content = article_title
converter: MarkdownConverter = MarkdownConverter(
strip=["pre", "code"]
strip=["pre", "code"],
)
article_content_converted = str(converter.convert(article_content).strip()) # type: ignore # noqa: PGH003