Skip to content

Commit ffe7f98

Browse files
Merge branch 'processing/processing_tools' into processing-tools-rename
2 parents 04d3937 + 76df4b2 commit ffe7f98

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

m2l/main/vectorLayerWrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
QgsFeatureSink,
1212
QgsProcessingException,
1313
QgsPoint,
14-
QgsPointXY
14+
QgsPointXY,
1515
)
1616

1717
from qgis.PyQt.QtCore import QVariant, QDateTime
@@ -394,7 +394,7 @@ def dataframeToQgsLayer(
394394
attr_columns = [f.name() for f in fields]
395395

396396
# Iterate rows and write features
397-
for i, (idx, row) in enumerate(df.iterrows(), start=1):
397+
for i, (_idx, row) in enumerate(df.iterrows(), start=1):
398398
if feedback.isCanceled():
399399
break
400400

0 commit comments

Comments
 (0)