Skip to content

Commit 71696fe

Browse files
committed
mising pos args in write_images()
1 parent de473e1 commit 71696fe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

plotly/io/_kaleido.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,6 @@ def to_image(
186186
# TODO: Actually use provided kaleido_instance here
187187
img_bytes = kaleido.calc_fig_sync(
188188
fig_dict,
189-
path=None,
190189
opts=dict(
191190
format=format,
192191
width=width,
@@ -411,7 +410,7 @@ def write_images(*args, **kwargs):
411410
# Kaleido v1
412411
# TODO: Use a single shared kaleido instance for all images
413412
for a, kw in zip(individual_args, individual_kwargs):
414-
write_image(**kw)
413+
write_image(*a, **kw)
415414
else:
416415
# Kaleido v0, or orca
417416
for a, kw in zip(individual_args, individual_kwargs):

0 commit comments

Comments
 (0)