Skip to content

Commit 2578cd9

Browse files
author
Johann Krauter
committed
resolve flake8
1 parent f074713 commit 2578cd9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

galleries/examples/shapes_and_collections/ellipse_arrow.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
fig, ax = plt.subplots(subplot_kw={"aspect": "equal"})
2020

2121
# Define an ellipse clockwise
22-
center=(2, 4)
23-
width=30
24-
height=20
25-
angle=35
22+
center = (2, 4)
23+
width = 30
24+
height = 20
25+
angle = 35
2626
ellipse = Ellipse(
2727
xy=center,
2828
width=width,
@@ -43,6 +43,7 @@
4343
marker=MarkerStyle(">", "full", t),
4444
markersize=10
4545
)
46+
# Note: To reverse the orientation arrow, switch the marker type from > to <.
4647

4748
plt.show()
4849

0 commit comments

Comments
 (0)