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

Skip to content

Commit 2f7c6b7

Browse files
Flake8 fix
1 parent d6c0da6 commit 2f7c6b7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/lines_bars_and_markers/angle_arc.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ def draw_arc_between_vectors(ax, vec1, vec2):
6969
theta1 = get_vector_angle(trans, vec1)
7070
theta2 = get_vector_angle(trans, vec2)
7171
arc = mpatches.Arc(
72-
trans.transform((0,0)),
73-
width, height,
74-
theta1=theta1, theta2=theta2,
75-
gid="angle_arc",
72+
trans.transform((0, 0)),
73+
width, height,
74+
theta1=theta1, theta2=theta2,
75+
gid="angle_arc",
7676
transform=ax.transAxes)
7777
[p.remove() for p in ax.patches if p.get_gid() == "angle_arc"]
7878
ax.add_patch(arc)

0 commit comments

Comments
 (0)