Skip to content

Commit

Permalink
Remove leftover print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-a-cox committed Aug 23, 2023
1 parent 213c955 commit 9a61721
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion hera_filters/dspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,6 @@ def fourier_filter(x, data, wgts, filter_centers, filter_half_widths, mode, ridg

if fit_intercept:
# subtract off mean of data
print (filter_dims)
mean = np.sum(data * wgts, axis=tuple(filter_dims), keepdims=True) / np.sum(wgts, axis=tuple(filter_dims), keepdims=True)
data = np.copy(data) # make a copy so we don't modify the original data
data -= mean
Expand Down

0 comments on commit 9a61721

Please sign in to comment.