Skip to content

Commit 8ce167b

Browse files
fix Python render method with positional arguments instead of keyword arguments
1 parent 9528c7b commit 8ce167b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/openai_harmony/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ def render(
514514
}
515515

516516
return self._inner.render(
517-
message_json=message.to_json(), render_options=render_options_dict
517+
message.to_json(), render_options_dict
518518
)
519519

520520
# -- Parsing -------------------------------------------------------

0 commit comments

Comments
 (0)