From 9f5b7fc833004db1c20126d0373513496ca3d8cd Mon Sep 17 00:00:00 2001 From: dabhicusp Date: Tue, 5 Dec 2023 06:29:28 +0000 Subject: [PATCH] nit changes done. --- xee/ext.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xee/ext.py b/xee/ext.py index 6a65c10..1bc770e 100644 --- a/xee/ext.py +++ b/xee/ext.py @@ -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]