Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 26, 2024
1 parent e0d9d03 commit 239b4ff
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion WrightTools/artists/_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1111,7 +1111,12 @@ def stitch_to_animation(images, outpath=None, *, duration=0.5, palettesize=256,
frames = np.stack([imageio.v3.imread(image) for image in images], axis=0)

imageio.v3.imwrite(
outpath, frames, plugin="pillow", duration=duration * 1e3, loop=0, palettesize=palettesize
outpath,
frames,
plugin="pillow",
duration=duration * 1e3,
loop=0,
palettesize=palettesize,
)
if verbose:
interval = np.round(t.interval, 2)
Expand Down

0 comments on commit 239b4ff

Please sign in to comment.