fix Python render method with positional arguments instead of keyword arguments

This commit is contained in:
Amirhossein Ghanipour 2025-08-10 07:27:33 +03:30
parent 9528c7b4a0
commit 8ce167bf38

View file

@ -514,7 +514,7 @@ class HarmonyEncoding:
}
return self._inner.render(
message_json=message.to_json(), render_options=render_options_dict
message.to_json(), render_options_dict
)
# -- Parsing -------------------------------------------------------