Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/ee/tests/algorithms.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}]
Expand Down
2 changes: 1 addition & 1 deletion python/ee/tests/geometry_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading