From 53e1d97d63a5ac0bb3369d40e76e23228d23dbe4 Mon Sep 17 00:00:00 2001 From: x03daop Date: Tue, 3 Nov 2015 11:32:44 +0100 Subject: [PATCH] Script execution --- script/local.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()