8000 add ref · matplotlib/matplotlib@553918f · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

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)
0