Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions banzai/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ def __imul__(self, value):
# TODO: Handle the case where this is an array. Add SATURATE and GAIN handling when array.
self.data *= value
self.uncertainty *= value
self.meta['SATURATE'] *= value
self.meta['GAIN'] /= value
self.meta['MAXLIN'] *= value
self.saturate *= value
self.gain /= value
self.max_linearity *= value
return self

def __itruediv__(self, value):
Expand Down