Skip to content

Commit 986e8ce

Browse files
committed
Format to agree with flake8
1 parent 76270ac commit 986e8ce

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

tutorials/introductory/animation_tutorial.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
# animation by passing a function that iteratively modifies the data of a plot.
3737
# This is achieved by using the *setter* methods on various
3838
# :class:`~matplotlib.artist.Artist`
39-
# (examples: :class:`~matplotlib.line.Line2D`,
39+
# (examples: :class:`~matplotlib.lines.Line2D`,
4040
# :class:`~matplotlib.collections.PathCollection`, etc.). A usual
4141
# :class:`~matplotlib.animation.FuncAnimation` object takes a
4242
# :class:`~matplotlib.figure.Figure` that we want to animate and a function
@@ -236,11 +236,12 @@ def update(frame):
236236

237237
###############################################################################
238238
#
239-
# ================================================ =============================
239+
# ================================================ ===========================
240240
# Writer Supported Formats
241-
# ================================================ =============================
241+
# ================================================ ===========================
242242
# :class:`~matplotlib.animation.PillowWriter` .gif, .apng
243243
# :class:`~matplotlib.animation.HTMLWriter` .htm, .html, .png
244-
# :class:`~matplotlib.animation.FFMpegWriter` All formats supported by *ffmpeg*
244+
# :class:`~matplotlib.animation.FFMpegWriter` All formats supported by
245+
# *ffmpeg*
245246
# :class:`~matplotlib.animation.ImageMagickWriter` .gif
246-
# ================================================ =============================
247+
# ================================================ ===========================

0 commit comments

Comments
 (0)