Skip to content

Commit

Permalink
nit changes done.
Browse files Browse the repository at this point in the history
  • Loading branch information
dabhicusp committed Dec 5, 2023
1 parent 61b6d76 commit 9f5b7fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xee/ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,8 @@ def _process_coordinate_data(
tiles = [None] * total_tile
with concurrent.futures.ThreadPoolExecutor() as pool:
for i, arr in pool.map(
self._get_tile_from_ee, list(zip(data, itertools.cycle([coordinate_type])))
self._get_tile_from_ee,
list(zip(data, itertools.cycle([coordinate_type])))
):
tiles[i] = (
arr.tolist() if coordinate_type == 'longitude' else arr.tolist()[0]
Expand Down

0 comments on commit 9f5b7fc

Please sign in to comment.