From 381f7352b0a2ba2c462a125e286d946c699ccf0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaros=C5=82aw=20Zywert?= Date: Mon, 1 Sep 2025 14:32:50 +0200 Subject: [PATCH] fix for content metadata key conflict https://github.com/eyeseast/python-frontmatter/issues/96 --- frontmatter/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontmatter/__init__.py b/frontmatter/__init__.py index 12a44c7..6468aac 100644 --- a/frontmatter/__init__.py +++ b/frontmatter/__init__.py @@ -292,7 +292,7 @@ class Post(object): """ def __init__( - self, content: str, handler: BaseHandler | None = None, **metadata: object + self, content: str, handler: BaseHandler | None = None, /, **metadata: object ) -> None: self.content = str(content) self.metadata = metadata