Skip to content

Commit

Permalink
Fix flake8 false positive
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Jan 15, 2021
1 parent 2d79916 commit 08473f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/python/test_qgsqueryresultmodel.py
Expand Up @@ -133,7 +133,7 @@ def test_widget(self):
v.setModel(model)

def _set_row_count(idx, first, last):
lbl.setText('Rows %s fetched' % model.rowCount(model.index(-1, -1)))
lbl.setText('Rows %s fetched' % model.rowCount(model.index(-1, -1))) # noqa: F821

model.rowsInserted.connect(_set_row_count)

Expand Down

0 comments on commit 08473f2

Please sign in to comment.