Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf6e95a commit 896a775Copy full SHA for 896a775
lib/matplotlib/tests/test_patches.py
@@ -120,14 +120,14 @@ def test_ellipse_vertices():
120
assert_almost_equal(
121
ellipse.get_vertices(),
122
[
123
- (
124
- ellipse.center[0] - ellipse.width / 4 * np.sqrt(3),
125
- ellipse.center[1] - ellipse.width / 4,
126
- ),
127
(
128
ellipse.center[0] + ellipse.width / 4 * np.sqrt(3),
129
ellipse.center[1] + ellipse.width / 4,
130
),
+ (
+ ellipse.center[0] - ellipse.width / 4 * np.sqrt(3),
+ ellipse.center[1] - ellipse.width / 4,
+ ),
131
],
132
)
133
0 commit comments