Skip to content

Commit 6765be9

Browse files
committed
Fixed #115
1 parent 1102072 commit 6765be9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spectro.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ def isSaturated(self):
677677
"""
678678
Check if some pixels are saturated.
679679
"""
680-
return max(self.values) >= AVS_SATURATION_VALUE - 1
680+
return max(self.values) >= avaspec.AVS_SATURATION_VALUE - 1
681681

682682
def absorbanceSpectrum(reference, spectrum):
683683
"""

0 commit comments

Comments
 (0)