8000 fix pylab example · rmorshea/matplotlib@9057749 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9057749

Browse files
committed
fix pylab example
1 parent def9adc commit 9057749

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

examples/pylab_examples/patheffect_demo.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
txt = ax1.annotate("test", (1., 1.), (0., 0),
1010
arrowprops=dict(arrowstyle="->",
1111
connectionstyle="angle3", lw=2),
12-
size=20, ha="center", path_effects=[PathEffects.withStroke(linewidth=3,
13-
foreground="w")])
12+
size=20, ha="center",
13+
path_effects=[PathEffects.withStroke(linewidth=3,
14+
foreground="w")])
1415
txt.arrow_patch.path_effects = [
1516
PathEffects.Stroke(linewidth=5, foreground="w"),
16-
PathEffects.Normal()])
17+
PathEffects.Normal()]
1718

1819
ax1.grid(True, linestyle="-")
1920

0 commit comments

Comments
 (0)
0