diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2017-02-08 14:21:18 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2017-02-08 16:17:19 +0100 |
commit | 4c665b0d5af3841f20501a5dc01a23e671367856 (patch) | |
tree | cccde0fd4a3a2d92919338df4e162c9abfd079e1 /python/astra/creators.py | |
parent | 2af27e7ba08a65cce15c7e0658712fbba8f447fd (diff) | |
download | astra-4c665b0d5af3841f20501a5dc01a23e671367856.tar.gz astra-4c665b0d5af3841f20501a5dc01a23e671367856.tar.bz2 astra-4c665b0d5af3841f20501a5dc01a23e671367856.tar.xz astra-4c665b0d5af3841f20501a5dc01a23e671367856.zip |
Remove tabs from python code
Diffstat (limited to 'python/astra/creators.py')
-rw-r--r-- | python/astra/creators.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/astra/creators.py b/python/astra/creators.py index f45fd52..aa16221 100644 --- a/python/astra/creators.py +++ b/python/astra/creators.py @@ -258,7 +258,7 @@ This method can be called in a number of ways: elif intype == 'cone': if len(args) < 7: raise Exception('not enough variables: astra_create_proj_geom(cone, detector_spacing_x, detector_spacing_y, det_row_count, det_col_count, angles, source_origin, origin_det)') - return {'type': 'cone','DetectorSpacingX':args[0], 'DetectorSpacingY':args[1], 'DetectorRowCount':args[2],'DetectorColCount':args[3],'ProjectionAngles':args[4],'DistanceOriginSource': args[5],'DistanceOriginDetector':args[6]} + return {'type': 'cone','DetectorSpacingX':args[0], 'DetectorSpacingY':args[1], 'DetectorRowCount':args[2],'DetectorColCount':args[3],'ProjectionAngles':args[4],'DistanceOriginSource': args[5],'DistanceOriginDetector':args[6]} elif intype == 'cone_vec': if len(args) < 3: raise Exception('not enough variables: astra_create_proj_geom(cone_vec, det_row_count, det_col_count, V)') |