diff --git a/src/h3/api/basic_int/__init__.py b/src/h3/api/basic_int/__init__.py index be4ce223..dd0ff65b 100644 --- a/src/h3/api/basic_int/__init__.py +++ b/src/h3/api/basic_int/__init__.py @@ -372,10 +372,10 @@ def uncompact_cells(cells, res): Notes ----- There is currently no guaranteed order of the output cells. - - TODO: add test to make sure an error is returned when input contains cell smaller than output res. - https://github.com/uber/h3/blob/master/src/h3lib/lib/h3Index.c#L425 """ + # TODO: add test to make sure an error is returned when input contains cell + # smaller than output res. + hc = _in_collection(cells) hu = _cy.uncompact_cells(hc, res) @@ -959,7 +959,6 @@ def great_circle_distance(latlng1, latlng2, unit='km'): unit: str Unit for distance result (``'km'``, ``'m'``, or ``'rads'``) - Returns ------- The spherical distance between the points in the given units