diff --git a/python/ee/tests/algorithms.json b/python/ee/tests/algorithms.json index 0be84e10f..111d31733 100644 --- a/python/ee/tests/algorithms.json +++ b/python/ee/tests/algorithms.json @@ -3191,7 +3191,7 @@ }, { "argumentName": "metric", "type": "String", - "description": "The distance metric to use. NOTE: KD_TREE (and AUTO for low dimensions) will not use the metric selected. Options are:\n \u0027EUCLIDEAN\u0027 - Euclidean distance.\n \u0027MAHALANOBIS\u0027 - Mahalanobis distance.\n \u0027MANHATTAN\u0027 - Manhattan distance.\n \u0027BRAYCURTIS\u0027 - Bray-Curtis distance.", + "description": "The distance metric to use. NOTE: Euclidean distance.\n \u0027MAHALANOBIS\u0027 - Mahalanobis distance.\n \u0027MANHATTAN\u0027 - Manhattan distance.\n \u0027BRAYCURTIS\u0027 - Bray-Curtis distance.", "optional": true, "defaultValue": "EUCLIDEAN" }] diff --git a/python/ee/tests/geometry_test.py b/python/ee/tests/geometry_test.py index f747ab317..cf0b87144 100644 --- a/python/ee/tests/geometry_test.py +++ b/python/ee/tests/geometry_test.py @@ -816,7 +816,7 @@ def test_coordinates_to_line(self): # pylint: disable=protected-access self.assertEqual([], ee.Geometry._coordinatesToLine([])) self.assertEqual([1, 2], ee.Geometry._coordinatesToLine([1, 2])) - # TODO: schwehr - Improve _coordinatesToLine typing. + # TODO: user - Improve _coordinatesToLine typing. self.assertEqual( [[1, 2]], ee.Geometry._coordinatesToLine([[1, 2]]), # pytype: disable=wrong-arg-types