We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent f18b898 commit eb22319Copy full SHA for eb22319
python/plugins/processing/tools/vector.py
@@ -130,6 +130,10 @@ def filterFeature(f, ignoreInvalid):
130
def __iter__(self):
131
return self.iter
132
133
+ def __next__(self):
134
+ '''Iterator next method in python 3'''
135
+ return next(self.iter)
136
+
137
def __len__(self):
138
if self.selection:
139
return int(self.layer.selectedFeatureCount())
0 commit comments