File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 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
88class CoordinateSequence :
99 def __init__ (self , coords : NDArray [np .float64 ]) -> None : ...
1010 def __len__ (self ) -> int : ...
11- def __iter__ (self ) -> Iterator [tuple [float , float ]]: ...
11+ def __iter__ (self ) -> Iterator [tuple [float , ... ]]: ...
1212 @overload
13- def __getitem__ (self , key : int ) -> tuple [float , float ]: ...
13+ def __getitem__ (self , key : int ) -> tuple [float , ... ]: ...
1414 @overload
15- def __getitem__ (self , key : slice ) -> list [tuple [float , float ]]: ...
15+ def __getitem__ (self , key : slice ) -> list [tuple [float , ... ]]: ...
1616 def __array__ (self , dtype : DTypeLike | None = None , copy : Literal [True ] | None = None ) -> NDArray [np .float64 ]: ...
1717 @property
1818 def xy (self ) -> tuple [array [float ], array [float ]]: ...
You can’t perform that action at this time.
0 commit comments