Skip to content

Commit 2688dd4

Browse files
Flake8 fix
1 parent d4858b9 commit 2688dd4

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

examples/lines_bars_and_markers/angle_arc.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def get_vector_angle(vec):
2828
Returns
2929
-------
3030
float
31-
Angle in radians between +x axis
31+
Angle in radians between +x axis
3232
and vec.
3333
"""
3434
xy = vec.get_xy()
@@ -43,9 +43,9 @@ def draw_arc_between_vectors(ax, vec1, vec2):
4343
4444
Arc will be drawn counterclockwise if the angle
4545
of vec1 is smaller than the angle of vec2 and
46-
will be drawn clockwise otherwise. Arc will be
46+
will be drawn clockwise otherwise. Arc will be
4747
drawn as a mpatches.Arc on the provided axes.
48-
48+
4949
Parameters
5050
----------
5151
ax : matplotlib.axes._subplots.AxesSubplot
@@ -73,6 +73,7 @@ def draw_arc_between_vectors(ax, vec1, vec2):
7373
except:
7474
pass
7575
ax.add_patch(arc)
76+
print(ax.patches[0].gid)
7677

7778

7879
def fig_resize(event):

0 commit comments

Comments
 (0)