]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/python/utils/test_centroid.py
enable flake for Python tests
[nominatim.git] / test / python / utils / test_centroid.py
index bac0edb3c406fd9ab45b74fb4d0e410ddfc982b2..664d5cd7a7f7d39438ce5a387a60ab06db8bb43e 100644 (file)
@@ -2,7 +2,7 @@
 #
 # This file is part of Nominatim. (https://nominatim.org)
 #
-# Copyright (C) 2024 by the Nominatim developer community.
+# Copyright (C) 2025 by the Nominatim developer community.
 # For a full list of authors see the git log.
 """
 Tests for centroid computation.
@@ -11,6 +11,7 @@ import pytest
 
 from nominatim_db.utils.centroid import PointsCentroid
 
+
 def test_empty_set():
     c = PointsCentroid()
 
@@ -18,7 +19,7 @@ def test_empty_set():
         c.centroid()
 
 
-@pytest.mark.parametrize("centroid", [(0,0), (-1, 3), [0.0000032, 88.4938]])
+@pytest.mark.parametrize("centroid", [(0, 0), (-1, 3), [0.0000032, 88.4938]])
 def test_one_point_centroid(centroid):
     c = PointsCentroid()