From 327d3ec83ed415ee72f0217a476ee8f811334cba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 May 2025 03:12:17 +0200 Subject: [PATCH] Add trailing comma to MarkdownConverter parameters for consistency --- scrape.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrape.py b/scrape.py index d0a0d23..bb9731d 100644 --- a/scrape.py +++ b/scrape.py @@ -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