From 2ea35e55595253fc2d050a91e49748816a7c794f Mon Sep 17 00:00:00 2001 From: dabhicusp Date: Fri, 16 Feb 2024 06:26:42 +0000 Subject: [PATCH] lint error fixed. --- xee/ext.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/xee/ext.py b/xee/ext.py index 028f2d8..b82163e 100644 --- a/xee/ext.py +++ b/xee/ext.py @@ -279,9 +279,12 @@ def get_info(self) -> Dict[str, Any]: rpcs.append(('projection', self.projection)) if isinstance(self.geometry, ee.Geometry): - rpcs.append(('bounds', self.geometry.bounds(proj = self.projection))) + rpcs.append(('bounds', self.geometry.bounds(proj=self.projection))) else: - rpcs.append(('bounds', self.image_collection.first().geometry().bounds(proj = self.projection))) + rpcs.append(( + 'bounds', + self.image_collection.first().geometry().bounds(proj=self.projection), + )) # TODO(#29, #30): This RPC call takes the longest time to compute. This # requires a full scan of the images in the collection, which happens on the