From d3103c107ab1ca4aaa9b7c0593f9d231abf53d58 Mon Sep 17 00:00:00 2001 From: Barnaby Rowe Date: Thu, 26 Jul 2012 09:14:07 -0700 Subject: [PATCH] fixed tab (#195) --- galsim/descriptors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galsim/descriptors.py b/galsim/descriptors.py index b6bc164fe39..4964b8fbb05 100644 --- a/galsim/descriptors.py +++ b/galsim/descriptors.py @@ -102,7 +102,7 @@ class GetSetScaleParam(object): class MyProfile(GSObject): half_light_radius = SimpleParam("half_light_radius") - fwhm = GetSetScaleParam("fwhm", "half_light_radius", RADIUS_CONVERSION_FACTOR) + fwhm = GetSetScaleParam("fwhm", "half_light_radius", RADIUS_CONVERSION_FACTOR) (N.B. The example above is functionally equivalent to the example given in the GetSetFuncParam docstring, and illustrates the neater syntax of this descriptor for this specific task.)