Skip to content

Commit

Permalink
Fix minor indentation issue I didn't catch in a commit suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-rooks committed Jan 23, 2024
1 parent c204e53 commit fe82d48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sasdata/data_util/manipulations.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,8 +362,8 @@ def _avg(self, data2D, maj):
qy_data = data2D.qy_data[np.isfinite(data2D.data)]
mask_data = data2D.mask[np.isfinite(data2D.data)]

# Bin width calculation returns negative values when either axis has no points above 0.
self.bin_width = abs(self.bin_width)
# Bin width calculation returns negative values when either axis has no points above 0.
self.bin_width = abs(self.bin_width)

# Build array of Q intervals
if maj == 'x':
Expand Down

0 comments on commit fe82d48

Please sign in to comment.