Make geos.GEOSGeometryBase.equals_exact accept float (#796)

This commit is contained in:
Cory Dolphin
2021-12-29 01:16:16 -07:00
committed by GitHub
parent 1834242e46
commit 9483865284

View File

@@ -56,7 +56,7 @@ class GEOSGeometryBase(GEOSBase):
def crosses(self, other: Any): ...
def disjoint(self, other: Any): ...
def equals(self, other: Any): ...
def equals_exact(self, other: Any, tolerance: int = ...): ...
def equals_exact(self, other: Any, tolerance: float = ...): ...
def intersects(self, other: Any): ...
def overlaps(self, other: Any): ...
def relate_pattern(self, other: Any, pattern: Any): ...