Skip to content

Commit 553918f

Browse files
author
luke
committed
add ref
1 parent cbaeadb commit 553918f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/animation/simple_anim.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
Animated line plot
44
==================
55
6+
Output generate via :ref:`matplotlib.animation.Animation.to_jshtml`.
67
"""
78

89
import numpy as np
@@ -11,7 +12,7 @@
1112

1213
fig, ax = plt.subplots()
1314

14-
x = np.arange(0, 2*np.pi, 0.01)
15+
x = np.arange(0, 2 * np.pi, 0.01)
1516
line, = ax.plot(x, np.sin(x))
1617

1718

0 commit comments

Comments
 (0)