Skip to content

Commit 1720286

Browse files
committed
Add missing import
1 parent 1a58faf commit 1720286

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/source/logo.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ kernelspec:
1717
import os
1818
import functools
1919
import subprocess
20+
import tempfile
2021
from pathlib import Path
2122
2223
import matplotlib.tri as mtri
@@ -141,7 +142,7 @@ def animate_mp4(fname="source/_static/logo_docs.mp4", nseconds=15):
141142
get_new_artists(n, learner, data, rounded_corners, ax) for n in tqdm(npoints)
142143
]
143144
ani = animation.ArtistAnimation(fig, artists, blit=True)
144-
ani.save(fname, writer=FFMpegWriter(fps=24, codec="libvpx-vp9"))
145+
ani.save(fname, writer=FFMpegWriter(fps=24))
145146
146147
147148
def animate_png(folder=None, nseconds=15):

0 commit comments

Comments
 (0)