File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ from numpy.typing import DTypeLike, NDArray
8
8
class CoordinateSequence :
9
9
def __init__ (self , coords : NDArray [np .float64 ]) -> None : ...
10
10
def __len__ (self ) -> int : ...
11
- def __iter__ (self ) -> Iterator [tuple [float , float ]]: ...
11
+ def __iter__ (self ) -> Iterator [tuple [float , ... ]]: ...
12
12
@overload
13
- def __getitem__ (self , key : int ) -> tuple [float , float ]: ...
13
+ def __getitem__ (self , key : int ) -> tuple [float , ... ]: ...
14
14
@overload
15
- def __getitem__ (self , key : slice ) -> list [tuple [float , float ]]: ...
15
+ def __getitem__ (self , key : slice ) -> list [tuple [float , ... ]]: ...
16
16
def __array__ (self , dtype : DTypeLike | None = None , copy : Literal [True ] | None = None ) -> NDArray [np .float64 ]: ...
17
17
@property
18
18
def xy (self ) -> tuple [array [float ], array [float ]]: ...
You can’t perform that action at this time.
0 commit comments