We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de473e1 commit 71696feCopy full SHA for 71696fe
plotly/io/_kaleido.py
@@ -186,7 +186,6 @@ def to_image(
186
# TODO: Actually use provided kaleido_instance here
187
img_bytes = kaleido.calc_fig_sync(
188
fig_dict,
189
- path=None,
190
opts=dict(
191
format=format,
192
width=width,
@@ -411,7 +410,7 @@ def write_images(*args, **kwargs):
411
410
# Kaleido v1
412
# TODO: Use a single shared kaleido instance for all images
413
for a, kw in zip(individual_args, individual_kwargs):
414
- write_image(**kw)
+ write_image(*a, **kw)
415
else:
416
# Kaleido v0, or orca
417
0 commit comments