Skip to content

Commit 135d7cb

Browse files
author
Johann Krauter
committed
soved isort fail. How to solve the subs fail?
1 parent 86fbf90 commit 135d7cb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

galleries/examples/shapes_and_collections/ellipse_arrow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
"""
1111

1212
import matplotlib.pyplot as plt
13+
1314
from matplotlib.markers import MarkerStyle
1415
from matplotlib.patches import Ellipse
1516
from matplotlib.transforms import Affine2D
1617

17-
1818
# Create a figure and axis
1919
fig, ax = plt.subplots(subplot_kw={"aspect": "equal"})
2020

lib/matplotlib/patches.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,8 @@ class Ellipse(Patch):
259259

260260
def get_corners(self) -> np.ndarray: ...
261261

262-
def get_vertices(self) -> list[tuple[float, float]]: ...
263-
def get_co_vertices(self) -> list[tuple[float, float]]: ...
262+
def get_vertices(self) -> tuple[float, float]: ...
263+
def get_co_vertices(self) -> tuple[float, float]: ...
264264

265265

266266
class Annulus(Patch):

0 commit comments

Comments
 (0)