From 9483865284bfe199961085d52765a83270e84611 Mon Sep 17 00:00:00 2001 From: Cory Dolphin Date: Wed, 29 Dec 2021 01:16:16 -0700 Subject: [PATCH] Make geos.GEOSGeometryBase.equals_exact accept float (#796) --- django-stubs/contrib/gis/geos/geometry.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django-stubs/contrib/gis/geos/geometry.pyi b/django-stubs/contrib/gis/geos/geometry.pyi index 9dc38b1..a8eba03 100644 --- a/django-stubs/contrib/gis/geos/geometry.pyi +++ b/django-stubs/contrib/gis/geos/geometry.pyi @@ -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): ...