Skip to content

Commit

Permalink
Fix wrong indent
Browse files Browse the repository at this point in the history
  • Loading branch information
dnerini authored Sep 5, 2024
1 parent 29a623b commit 2de09bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlpp_lib/normalizers.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def f(ds: xr.Dataset) -> xr.Dataset:
ds = ds.copy()
if self.fillvalue:
ds = ds.where(ds > self.fillvalue)
ds = ds * self.std + self.mean
ds = ds * self.std + self.mean
return ds.astype("float32")

return tuple(f(ds) for ds in datasets)
Expand Down

0 comments on commit 2de09bd

Please sign in to comment.