Skip to content
Snippets Groups Projects
Verified Commit 9ae08264 authored by Yannick DAYER's avatar Yannick DAYER
Browse files

doc: fix argument name in pyplot Ellipse in plots.

parent dbe2907f
No related branches found
No related tags found
No related merge requests found
...@@ -66,7 +66,9 @@ def draw_ellipse(position, covariance, ax=None, **kwargs): ...@@ -66,7 +66,9 @@ def draw_ellipse(position, covariance, ax=None, **kwargs):
# Draw the Ellipse # Draw the Ellipse
for nsig in range(1, 4): for nsig in range(1, 4):
ax.add_patch( ax.add_patch(
Ellipse(position, nsig * width, nsig * height, angle, **kwargs) Ellipse(
position, nsig * width, nsig * height, angle=angle, **kwargs
)
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment