]> git.openstreetmap.org Git - nominatim.git/blobdiff - src/nominatim_db/utils/centroid.py
fix style issue found by flake8
[nominatim.git] / src / nominatim_db / utils / centroid.py
index 21a7c7799a40f5adaf9841a5df43edbe4018a0ec..a45d958b342214e31fb66153f738a11ecd06fd59 100644 (file)
@@ -10,6 +10,7 @@ Functions for computation of centroids.
 from typing import Tuple, Any
 from collections.abc import Collection
 
+
 class PointsCentroid:
     """ Centroid computation from single points using an online algorithm.
         More points may be added at any time.
@@ -32,11 +33,9 @@ class PointsCentroid:
         return (float(self.sum_x/self.count)/10000000,
                 float(self.sum_y/self.count)/10000000)
 
-
     def __len__(self) -> int:
         return self.count
 
-
     def __iadd__(self, other: Any) -> 'PointsCentroid':
         if isinstance(other, Collection) and len(other) == 2:
             if all(isinstance(p, (float, int)) for p in other):