diff --git a/script/local.py b/script/local.py index fcbebc1c..90075f9e 100644 --- a/script/local.py +++ b/script/local.py @@ -49,7 +49,7 @@ class ImageIntegrator(ReadableCalibratedArray): def read(self): return to_array(integrate_image(),'d') - def getCalibration(): + def getCalibration(self): return ArrayCalibration(0.1, -2.0) Integration = ImageIntegrator() @@ -63,7 +63,7 @@ class ImageAngleDistribution(ReadableCalibratedArray): def read(self): return to_array(integrate_image(False),'d') - def getCalibration(): + def getCalibration(self): return ArrayCalibration(0.1, -2.0) AngleDistribution = ImageAngleDistribution()