File tree 1 file changed +7
-4
lines changed
python/plugins/processing/algs/qgis
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -59,11 +59,14 @@ def defineCharacteristics(self):
59
59
self .addParameter (ParameterVector (self .POINTS ,
60
60
self .tr ('Input layer' ), [ParameterVector .VECTOR_TYPE_ANY ]))
61
61
self .addParameter (ParameterTableField (self .WEIGHT ,
62
- self .tr ('Weight field' ), MeanCoords .POINTS ,
63
- ParameterTableField .DATA_TYPE_NUMBER , optional = True ))
62
+ self .tr ('Weight field' ),
63
+ MeanCoords .POINTS ,
64
+ ParameterTableField .DATA_TYPE_NUMBER ,
65
+ optional = True ))
64
66
self .addParameter (ParameterTableField (self .UID ,
65
- self .tr ('Unique ID field' ), MeanCoords .POINTS ,
66
- ParameterTableField .DATA_TYPE_NUMBER , optional = True ))
67
+ self .tr ('Unique ID field' ),
68
+ MeanCoords .POINTS ,
69
+ optional = True ))
67
70
68
71
self .addOutput (OutputVector (MeanCoords .OUTPUT , self .tr ('Mean coordinates' )))
69
72
You can’t perform that action at this time.
0 commit comments