File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
python/plugins/processing/algs/qgis Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -49,11 +49,14 @@ def defineCharacteristics(self):
49
49
self .addParameter (ParameterVector (self .POINTS ,
50
50
self .tr ('Input layer' ), [ParameterVector .VECTOR_TYPE_ANY ]))
51
51
self .addParameter (ParameterTableField (self .WEIGHT ,
52
- self .tr ('Weight field' ), MeanCoords .POINTS ,
53
- ParameterTableField .DATA_TYPE_NUMBER , optional = True ))
52
+ self .tr ('Weight field' ),
53
+ MeanCoords .POINTS ,
54
+ ParameterTableField .DATA_TYPE_NUMBER ,
55
+ optional = True ))
54
56
self .addParameter (ParameterTableField (self .UID ,
55
- self .tr ('Unique ID field' ), MeanCoords .POINTS ,
56
- ParameterTableField .DATA_TYPE_NUMBER , optional = True ))
57
+ self .tr ('Unique ID field' ),
58
+ MeanCoords .POINTS ,
59
+ optional = True ))
57
60
58
61
self .addOutput (OutputVector (MeanCoords .OUTPUT , self .tr ('Mean coordinates' )))
59
62
You can’t perform that action at this time.
0 commit comments