Skip to content

Commit

Permalink
Replace cached property with regular property
Browse files Browse the repository at this point in the history
Co-authored-by: David Hoese <david.hoese@ssec.wisc.edu>
  • Loading branch information
mraspaud and djhoese committed Apr 4, 2022
1 parent ae73b9d commit cd1d863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion satpy/readers/olci_nc.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def _do_interpolate(self, data):
return [xr.DataArray(da.from_array(x, chunks=(CHUNK_SIZE, CHUNK_SIZE)),
dims=['y', 'x']) for x in int_data]

@cached_property
@property
def _need_interpolation(self):
return (self.c_step != 1 or self.l_step != 1)

Expand Down

0 comments on commit cd1d863

Please sign in to comment.