Skip to content

Commit 322790d

Browse files
authored
Fix method call for reverse_zeropoint
1 parent 926c515 commit 322790d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aion/codecs/preprocessing/image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,6 @@ def forward(self, image, survey):
102102
return image
103103

104104
def backward(self, image, survey):
105-
zpscale = self._reverse_zeropoint(27.0) if survey == "HSC" else 1.0
105+
zpscale = self.reverse_zeropoint(27.0) if survey == "HSC" else 1.0
106106
image *= zpscale
107107
return image

0 commit comments

Comments
 (0)