mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
fixed value used before assignment error
This commit is contained in:
parent
7a389f634e
commit
4a639ad984
@ -116,8 +116,8 @@ class BasicStatisticsNumbers(GeoAlgorithm):
|
||||
if value > maxValue:
|
||||
maxValue = value
|
||||
|
||||
values.append(value)
|
||||
sumValue += value
|
||||
values.append(value)
|
||||
sumValue += value
|
||||
|
||||
current += 1
|
||||
progress.setPercentage(int(current * total))
|
||||
|
Loading…
x
Reference in New Issue
Block a user