Skip to content

Commit

Permalink
Fix pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaRenauld committed Feb 20, 2024
1 parent 9d5f95f commit 8db132a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scilpy/preprocessing/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def smooth_to_fwhm(data, fwhm):

if len(data.shape) == 3:
data_smooth = gaussian_filter(data, sigma=gauss_std)
elif len(data.shape) == 4:
elif len(data.shape) == 4:
data_smooth = np.zeros(data.shape)
for v in range(data.shape[-1]):
data_smooth[..., v] = gaussian_filter(data[..., v],
Expand Down

0 comments on commit 8db132a

Please sign in to comment.