Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 932f567

Browse files
authored
Address flake8 requirement
1 parent 0a60096 commit 932f567

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

examples/shapes_and_collections/arrow_guide.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
that behave differently when the data limits on a plot are changed. In general,
1010
points on a plot can either be fixed in "data space" or "display space".
1111
Something plotted in data space moves when the data limits are altered - an
12-
example would be the points in a scatter plot. Something plotted in display space
13-
stays static when data limits are altered - an example would be a figure title
14-
or the axis labels.
12+
example would be the points in a scatter plot. Something plotted in display
13+
space stays static when data limits are altered - an example would be a
14+
figure title or the axis labels.
1515
1616
Arrows consist of a head (and possibly a tail) and a stem drawn between a
1717
start point and end point, called 'anchor points' from now on.
@@ -39,9 +39,9 @@
3939
# -----------------------------------------------------------------------
4040
#
4141
# This is useful if you are annotating a plot, and don't want the arrow to
42-
# to change shape or position if you pan or scale the plot.
42+
# to change shape or position if you pan or scale the plot.
4343
#
44-
# In this case we use `.patches.FancyArrowPatch`
44+
# In this case we use `.patches.FancyArrowPatch`.
4545
#
4646
# Note that when the axis limits are changed, the arrow shape stays the same,
4747
# but the anchor points move.
@@ -89,7 +89,7 @@
8989
# Head shape and anchor points fixed in data space
9090
# ------------------------------------------------
9191
#
92-
# In this case we use `.patches.Arrow`
92+
# In this case we use `.patches.Arrow`.
9393
#
9494
# Note that when the axis limits are changed, the arrow shape and location
9595
# change.

0 commit comments

Comments
 (0)