Skip to content

Commit

Permalink
typo : put space into the line 116 of readers/li_l2_nc.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementLaplace committed Nov 20, 2024
1 parent 9871d1a commit fa56be5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion satpy/readers/li_l2_nc.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def get_dataset(self, dataset_id, ds_info=None):
data_array = self.get_array_on_fci_grid(data_array)
else :
if data_array is not None:
if not isinstance(data_array.data,da.Array):
if not isinstance(data_array.data, da.Array):
data_array.data = da.from_array(data_array.data)
return data_array

Expand Down

0 comments on commit fa56be5

Please sign in to comment.