mirror of
https://github.com/TheLovinator1/wutheringwaves.git
synced 2025-08-04 08:03:28 +02:00
Add trailing comma to MarkdownConverter parameters for consistency
This commit is contained in:
@ -390,7 +390,7 @@ def generate_atom_feed(articles: list[dict[Any, Any]], file_name: str) -> str:
|
|||||||
article_content = article_title
|
article_content = article_title
|
||||||
|
|
||||||
converter: MarkdownConverter = MarkdownConverter(
|
converter: MarkdownConverter = MarkdownConverter(
|
||||||
strip=["pre", "code"]
|
strip=["pre", "code"],
|
||||||
)
|
)
|
||||||
article_content_converted = str(converter.convert(article_content).strip()) # type: ignore # noqa: PGH003
|
article_content_converted = str(converter.convert(article_content).strip()) # type: ignore # noqa: PGH003
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user